14303 AskForJoinableAlliancesList and 14107 CancelMatchmake are both genuinely empty payloads. 516 UpdateLastShownLevelUp is header only, 537 StartMatchmake carries a vint and a bool. none of them move the home checksum. that clears the unknown type warnings out of the log.
68 lines
2.3 KiB
Rust
68 lines
2.3 KiB
Rust
mod achievement;
|
|
mod chest;
|
|
mod command;
|
|
mod deck;
|
|
mod header;
|
|
mod manager;
|
|
mod matchmake;
|
|
mod reward;
|
|
mod shop;
|
|
mod spells;
|
|
mod ui;
|
|
pub use achievement::{
|
|
LogicClaimAchievementRewardCommand, COMMODITY_ACHIEVEMENT_CLAIMED,
|
|
COMMODITY_ACHIEVEMENT_PROGRESS,
|
|
};
|
|
pub use chest::{
|
|
LogicClaimRewardCommand, LogicCollectFreeChestCommand, LogicCollectMultiWinChestCommand,
|
|
LogicStartRewardClaimCommand,
|
|
};
|
|
pub use command::{CommandMeta, CommandOutcome, CommandRegistryEntry, Execute, LogicCommand};
|
|
pub use deck::{LogicMoveSpellCommand, LogicSwapSpellsCommand};
|
|
pub use header::LogicCommandHeader;
|
|
pub use manager::LogicCommandManager;
|
|
pub use matchmake::{LogicStartMatchmakeCommand, LogicUpdateLastShownLevelUpCommand};
|
|
pub use reward::LogicReward;
|
|
pub use shop::{
|
|
LogicBuyCardCommand, LogicBuyChestCommand, LogicBuyResourcePackCommand,
|
|
LogicShopSeedChangedCommand,
|
|
};
|
|
pub use spells::{LogicFuseSpellsCommand, LogicSortCollectionCommand};
|
|
pub use ui::{
|
|
LogicHelpOpenedCommand, LogicPageOpenedCommand, LogicRefreshAchievementsCommand,
|
|
LogicShopOpenedCommand,
|
|
};
|
|
pub mod command_type {
|
|
pub const DIAMONDS_ADDED: i32 = 202;
|
|
pub const CLAIM_REWARD: i32 = 213;
|
|
pub const ADD_CHEST: i32 = 214;
|
|
pub const ADD_SPELLS: i32 = 216;
|
|
pub const SHOP_SEED_CHANGED: i32 = 217;
|
|
pub const SWAP_SPELLS: i32 = 500;
|
|
pub const START_EXPLORING: i32 = 502;
|
|
pub const START_REWARD_CLAIM: i32 = 503;
|
|
pub const FUSE_SPELLS: i32 = 504;
|
|
pub const SPEED_UP_EXPLORING: i32 = 506;
|
|
pub const SELL_CHEST: i32 = 507;
|
|
pub const UPDATE_LAST_SHOWN_LEVEL_UP: i32 = 516;
|
|
pub const CANCEL_CHEST_OPEN: i32 = 517;
|
|
pub const START_MATCHMAKE: i32 = 537;
|
|
pub const COLLECT_FREE_CHEST: i32 = 518;
|
|
pub const SORT_COLLECTION: i32 = 520;
|
|
pub const MOVE_SPELL: i32 = 521;
|
|
pub const COLLECT_MULTI_WIN_CHEST: i32 = 523;
|
|
pub const BUY_CHEST: i32 = 528;
|
|
pub const BUY_RESOURCE_PACK: i32 = 529;
|
|
pub const BUY_CARD: i32 = 530;
|
|
pub const HELP_OPENED: i32 = 531;
|
|
pub const SHOP_OPENED: i32 = 532;
|
|
pub const CLAIM_ACHIEVEMENT_REWARD: i32 = 535;
|
|
pub const REFRESH_ACHIEVEMENTS: i32 = 538;
|
|
pub const PAGE_OPENED: i32 = 539;
|
|
}
|
|
pub mod chest_source {
|
|
pub const SLOT: i32 = 1;
|
|
pub const FREE: i32 = 2;
|
|
pub const CROWN: i32 = 3;
|
|
pub const PURCHASED: i32 = 4;
|
|
}
|