mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 16:34:51 +01:00
PARTNER save/load handling OTOMO_AIROU save/load handling Basic groundwork for HUNTER_NAVI save/load handling Basic groundwork for PLATE_BOX save/load handling Basic groundwork for PLATE_DATA save/load handling Basic groundwork for PLATE_MYSET save/load handling Basic groundwork for DECO_MYSET save/load handling Basic groundwork for RENGOKU_DATA save/load handling Handling for MSG_MHF_GET_RENGOKU_BINARY, enables road. Place rengoku_data.bin from either /dat/ in install or from a packet capture in the /bin/ folder for this Handling for MSG_MHF_UPDATE_CAFEPOINT allowing access to guildcard Handling for MSG_MHF_GET_PAPER_DATA which fixes the issue of all save functionality immediately breaking after loading into town proper Handling for MSG_MHF_ENUMERATE_SHOP enabling access to all shops Handling for MSG_MHF_GET_TENROUAIRAI enabling access to duremudira and janky tower Handling for MSG_MHF_GET_GACHA_POINT, should be added to database as it's functionally a persistent save that's reduced when MSG_MHF_USE_GACHA_POINT is triggered Handling for MSG_MHF_GET_TREND_WEAPON, stops smith breaking when you're high enough rank for it to pull recommendations Devmode config option for using a fixed stage ID to allow entry into blacksmith and other areas Delivered quest file will automatically be replaced if you have a quest_override.bin in the bin folder, keep in mind this will break badly depending on quest counter data for the quest to be replaced
42 lines
1.8 KiB
Modula-2
42 lines
1.8 KiB
Modula-2
module github.com/Andoryuuta/Erupe
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
cloud.google.com/go/spanner v1.2.1 // indirect
|
|
cloud.google.com/go/storage v1.6.0 // indirect
|
|
github.com/Andoryuuta/byteframe v0.0.0-20200114030334-8979c5cc4c4a
|
|
github.com/BurntSushi/toml v0.3.1
|
|
github.com/ClickHouse/clickhouse-go v1.3.14 // indirect
|
|
github.com/aws/aws-sdk-go v1.29.10 // indirect
|
|
github.com/cockroachdb/cockroach-go v0.0.0-20190925194419-606b3d062051 // indirect
|
|
github.com/denisenkom/go-mssqldb v0.0.0-20200206145737-bbfc9a55622e // indirect
|
|
github.com/edsrzf/mmap-go v1.0.0 // indirect
|
|
github.com/gocql/gocql v0.0.0-20200221113847-372a19b1a852 // indirect
|
|
github.com/golang-migrate/migrate/v4 v4.9.1 // indirect
|
|
github.com/gorilla/handlers v1.4.2
|
|
github.com/gorilla/mux v1.7.4
|
|
github.com/jackc/pgconn v1.3.2 // indirect
|
|
github.com/jackc/pgx v3.6.2+incompatible // indirect
|
|
github.com/jmoiron/sqlx v1.2.0
|
|
github.com/klauspost/compress v1.10.1 // indirect
|
|
github.com/lib/pq v1.3.0
|
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
|
|
github.com/nakagami/firebirdsql v0.0.0-20200209020130-035d0abf81c8 // indirect
|
|
github.com/shopspring/decimal v0.0.0-20200226005030-a08b92da27ed // indirect
|
|
github.com/spf13/viper v1.6.1
|
|
github.com/xanzy/go-gitlab v0.26.0 // indirect
|
|
go.mongodb.org/mongo-driver v1.3.0 // indirect
|
|
go.uber.org/atomic v1.5.1 // indirect
|
|
go.uber.org/multierr v1.4.0 // indirect
|
|
go.uber.org/zap v1.13.0
|
|
golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d // indirect
|
|
golang.org/x/net v0.0.0-20200225223329-5d076fcf07a8 // indirect
|
|
golang.org/x/text v0.3.2
|
|
golang.org/x/tools v0.0.0-20200225230052-807dcd883420 // indirect
|
|
google.golang.org/api v0.19.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20200225123651-fc8f55426688 // indirect
|
|
modernc.org/mathutil v1.1.0 // indirect
|
|
modernc.org/ql v1.0.1 // indirect
|
|
)
|