mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-02-06 01:57:38 +01:00
Autogenerate packet type stubs
This commit is contained in:
446
channelserver/handler_table.go
Normal file
446
channelserver/handler_table.go
Normal file
@@ -0,0 +1,446 @@
|
|||||||
|
package channelserver
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/Erupe/network/mhfpacket"
|
||||||
|
)
|
||||||
|
|
||||||
|
type handlerFunc func(s *Session, p mhfpacket.MHFPacket)
|
||||||
|
|
||||||
|
var handlerTable map[network.PacketID]handlerFunc
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
handlerTable = make(map[network.PacketID]handlerFunc)
|
||||||
|
handlerTable[network.MSG_HEAD] = handleMsgHead
|
||||||
|
handlerTable[network.MSG_SYS_reserve01] = handleMsgSysReserve01
|
||||||
|
handlerTable[network.MSG_SYS_reserve02] = handleMsgSysReserve02
|
||||||
|
handlerTable[network.MSG_SYS_reserve03] = handleMsgSysReserve03
|
||||||
|
handlerTable[network.MSG_SYS_reserve04] = handleMsgSysReserve04
|
||||||
|
handlerTable[network.MSG_SYS_reserve05] = handleMsgSysReserve05
|
||||||
|
handlerTable[network.MSG_SYS_reserve06] = handleMsgSysReserve06
|
||||||
|
handlerTable[network.MSG_SYS_reserve07] = handleMsgSysReserve07
|
||||||
|
handlerTable[network.MSG_SYS_ADD_OBJECT] = handleMsgSysAddObject
|
||||||
|
handlerTable[network.MSG_SYS_DEL_OBJECT] = handleMsgSysDelObject
|
||||||
|
handlerTable[network.MSG_SYS_DISP_OBJECT] = handleMsgSysDispObject
|
||||||
|
handlerTable[network.MSG_SYS_HIDE_OBJECT] = handleMsgSysHideObject
|
||||||
|
handlerTable[network.MSG_SYS_reserve0C] = handleMsgSysReserve0C
|
||||||
|
handlerTable[network.MSG_SYS_reserve0D] = handleMsgSysReserve0D
|
||||||
|
handlerTable[network.MSG_SYS_reserve0E] = handleMsgSysReserve0E
|
||||||
|
handlerTable[network.MSG_SYS_EXTEND_THRESHOLD] = handleMsgSysExtendThreshold
|
||||||
|
handlerTable[network.MSG_SYS_END] = handleMsgSysEnd
|
||||||
|
handlerTable[network.MSG_SYS_NOP] = handleMsgSysNop
|
||||||
|
handlerTable[network.MSG_SYS_ACK] = handleMsgSysAck
|
||||||
|
handlerTable[network.MSG_SYS_TERMINAL_LOG] = handleMsgSysTerminalLog
|
||||||
|
handlerTable[network.MSG_SYS_LOGIN] = handleMsgSysLogin
|
||||||
|
handlerTable[network.MSG_SYS_LOGOUT] = handleMsgSysLogout
|
||||||
|
handlerTable[network.MSG_SYS_SET_STATUS] = handleMsgSysSetStatus
|
||||||
|
handlerTable[network.MSG_SYS_PING] = handleMsgSysPing
|
||||||
|
handlerTable[network.MSG_SYS_CAST_BINARY] = handleMsgSysCastBinary
|
||||||
|
handlerTable[network.MSG_SYS_HIDE_CLIENT] = handleMsgSysHideClient
|
||||||
|
handlerTable[network.MSG_SYS_TIME] = handleMsgSysTime
|
||||||
|
handlerTable[network.MSG_SYS_CASTED_BINARY] = handleMsgSysCastedBinary
|
||||||
|
handlerTable[network.MSG_SYS_GET_FILE] = handleMsgSysGetFile
|
||||||
|
handlerTable[network.MSG_SYS_ISSUE_LOGKEY] = handleMsgSysIssueLogkey
|
||||||
|
handlerTable[network.MSG_SYS_RECORD_LOG] = handleMsgSysRecordLog
|
||||||
|
handlerTable[network.MSG_SYS_ECHO] = handleMsgSysEcho
|
||||||
|
handlerTable[network.MSG_SYS_CREATE_STAGE] = handleMsgSysCreateStage
|
||||||
|
handlerTable[network.MSG_SYS_STAGE_DESTRUCT] = handleMsgSysStageDestruct
|
||||||
|
handlerTable[network.MSG_SYS_ENTER_STAGE] = handleMsgSysEnterStage
|
||||||
|
handlerTable[network.MSG_SYS_BACK_STAGE] = handleMsgSysBackStage
|
||||||
|
handlerTable[network.MSG_SYS_MOVE_STAGE] = handleMsgSysMoveStage
|
||||||
|
handlerTable[network.MSG_SYS_LEAVE_STAGE] = handleMsgSysLeaveStage
|
||||||
|
handlerTable[network.MSG_SYS_LOCK_STAGE] = handleMsgSysLockStage
|
||||||
|
handlerTable[network.MSG_SYS_UNLOCK_STAGE] = handleMsgSysUnlockStage
|
||||||
|
handlerTable[network.MSG_SYS_RESERVE_STAGE] = handleMsgSysReserveStage
|
||||||
|
handlerTable[network.MSG_SYS_UNRESERVE_STAGE] = handleMsgSysUnreserveStage
|
||||||
|
handlerTable[network.MSG_SYS_SET_STAGE_PASS] = handleMsgSysSetStagePass
|
||||||
|
handlerTable[network.MSG_SYS_WAIT_STAGE_BINARY] = handleMsgSysWaitStageBinary
|
||||||
|
handlerTable[network.MSG_SYS_SET_STAGE_BINARY] = handleMsgSysSetStageBinary
|
||||||
|
handlerTable[network.MSG_SYS_GET_STAGE_BINARY] = handleMsgSysGetStageBinary
|
||||||
|
handlerTable[network.MSG_SYS_ENUMERATE_CLIENT] = handleMsgSysEnumerateClient
|
||||||
|
handlerTable[network.MSG_SYS_ENUMERATE_STAGE] = handleMsgSysEnumerateStage
|
||||||
|
handlerTable[network.MSG_SYS_CREATE_MUTEX] = handleMsgSysCreateMutex
|
||||||
|
handlerTable[network.MSG_SYS_CREATE_OPEN_MUTEX] = handleMsgSysCreateOpenMutex
|
||||||
|
handlerTable[network.MSG_SYS_DELETE_MUTEX] = handleMsgSysDeleteMutex
|
||||||
|
handlerTable[network.MSG_SYS_OPEN_MUTEX] = handleMsgSysOpenMutex
|
||||||
|
handlerTable[network.MSG_SYS_CLOSE_MUTEX] = handleMsgSysCloseMutex
|
||||||
|
handlerTable[network.MSG_SYS_CREATE_SEMAPHORE] = handleMsgSysCreateSemaphore
|
||||||
|
handlerTable[network.MSG_SYS_CREATE_ACQUIRE_SEMAPHORE] = handleMsgSysCreateAcquireSemaphore
|
||||||
|
handlerTable[network.MSG_SYS_DELETE_SEMAPHORE] = handleMsgSysDeleteSemaphore
|
||||||
|
handlerTable[network.MSG_SYS_ACQUIRE_SEMAPHORE] = handleMsgSysAcquireSemaphore
|
||||||
|
handlerTable[network.MSG_SYS_RELEASE_SEMAPHORE] = handleMsgSysReleaseSemaphore
|
||||||
|
handlerTable[network.MSG_SYS_LOCK_GLOBAL_SEMA] = handleMsgSysLockGlobalSema
|
||||||
|
handlerTable[network.MSG_SYS_UNLOCK_GLOBAL_SEMA] = handleMsgSysUnlockGlobalSema
|
||||||
|
handlerTable[network.MSG_SYS_CHECK_SEMAPHORE] = handleMsgSysCheckSemaphore
|
||||||
|
handlerTable[network.MSG_SYS_OPERATE_REGISTER] = handleMsgSysOperateRegister
|
||||||
|
handlerTable[network.MSG_SYS_LOAD_REGISTER] = handleMsgSysLoadRegister
|
||||||
|
handlerTable[network.MSG_SYS_NOTIFY_REGISTER] = handleMsgSysNotifyRegister
|
||||||
|
handlerTable[network.MSG_SYS_CREATE_OBJECT] = handleMsgSysCreateObject
|
||||||
|
handlerTable[network.MSG_SYS_DELETE_OBJECT] = handleMsgSysDeleteObject
|
||||||
|
handlerTable[network.MSG_SYS_POSITION_OBJECT] = handleMsgSysPositionObject
|
||||||
|
handlerTable[network.MSG_SYS_ROTATE_OBJECT] = handleMsgSysRotateObject
|
||||||
|
handlerTable[network.MSG_SYS_DUPLICATE_OBJECT] = handleMsgSysDuplicateObject
|
||||||
|
handlerTable[network.MSG_SYS_SET_OBJECT_BINARY] = handleMsgSysSetObjectBinary
|
||||||
|
handlerTable[network.MSG_SYS_GET_OBJECT_BINARY] = handleMsgSysGetObjectBinary
|
||||||
|
handlerTable[network.MSG_SYS_GET_OBJECT_OWNER] = handleMsgSysGetObjectOwner
|
||||||
|
handlerTable[network.MSG_SYS_UPDATE_OBJECT_BINARY] = handleMsgSysUpdateObjectBinary
|
||||||
|
handlerTable[network.MSG_SYS_CLEANUP_OBJECT] = handleMsgSysCleanupObject
|
||||||
|
handlerTable[network.MSG_SYS_reserve4A] = handleMsgSysReserve4A
|
||||||
|
handlerTable[network.MSG_SYS_reserve4B] = handleMsgSysReserve4B
|
||||||
|
handlerTable[network.MSG_SYS_reserve4C] = handleMsgSysReserve4C
|
||||||
|
handlerTable[network.MSG_SYS_reserve4D] = handleMsgSysReserve4D
|
||||||
|
handlerTable[network.MSG_SYS_reserve4E] = handleMsgSysReserve4E
|
||||||
|
handlerTable[network.MSG_SYS_reserve4F] = handleMsgSysReserve4F
|
||||||
|
handlerTable[network.MSG_SYS_INSERT_USER] = handleMsgSysInsertUser
|
||||||
|
handlerTable[network.MSG_SYS_DELETE_USER] = handleMsgSysDeleteUser
|
||||||
|
handlerTable[network.MSG_SYS_SET_USER_BINARY] = handleMsgSysSetUserBinary
|
||||||
|
handlerTable[network.MSG_SYS_GET_USER_BINARY] = handleMsgSysGetUserBinary
|
||||||
|
handlerTable[network.MSG_SYS_NOTIFY_USER_BINARY] = handleMsgSysNotifyUserBinary
|
||||||
|
handlerTable[network.MSG_SYS_reserve55] = handleMsgSysReserve55
|
||||||
|
handlerTable[network.MSG_SYS_reserve56] = handleMsgSysReserve56
|
||||||
|
handlerTable[network.MSG_SYS_reserve57] = handleMsgSysReserve57
|
||||||
|
handlerTable[network.MSG_SYS_UPDATE_RIGHT] = handleMsgSysUpdateRight
|
||||||
|
handlerTable[network.MSG_SYS_AUTH_QUERY] = handleMsgSysAuthQuery
|
||||||
|
handlerTable[network.MSG_SYS_AUTH_DATA] = handleMsgSysAuthData
|
||||||
|
handlerTable[network.MSG_SYS_AUTH_TERMINAL] = handleMsgSysAuthTerminal
|
||||||
|
handlerTable[network.MSG_SYS_reserve5C] = handleMsgSysReserve5C
|
||||||
|
handlerTable[network.MSG_SYS_RIGHTS_RELOAD] = handleMsgSysRightsReload
|
||||||
|
handlerTable[network.MSG_SYS_reserve5E] = handleMsgSysReserve5E
|
||||||
|
handlerTable[network.MSG_SYS_reserve5F] = handleMsgSysReserve5F
|
||||||
|
handlerTable[network.MSG_MHF_SAVEDATA] = handleMsgMhfSavedata
|
||||||
|
handlerTable[network.MSG_MHF_LOADDATA] = handleMsgMhfLoaddata
|
||||||
|
handlerTable[network.MSG_MHF_LIST_MEMBER] = handleMsgMhfListMember
|
||||||
|
handlerTable[network.MSG_MHF_OPR_MEMBER] = handleMsgMhfOprMember
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_DIST_ITEM] = handleMsgMhfEnumerateDistItem
|
||||||
|
handlerTable[network.MSG_MHF_APPLY_DIST_ITEM] = handleMsgMhfApplyDistItem
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_DIST_ITEM] = handleMsgMhfAcquireDistItem
|
||||||
|
handlerTable[network.MSG_MHF_GET_DIST_DESCRIPTION] = handleMsgMhfGetDistDescription
|
||||||
|
handlerTable[network.MSG_MHF_SEND_MAIL] = handleMsgMhfSendMail
|
||||||
|
handlerTable[network.MSG_MHF_READ_MAIL] = handleMsgMhfReadMail
|
||||||
|
handlerTable[network.MSG_MHF_LIST_MAIL] = handleMsgMhfListMail
|
||||||
|
handlerTable[network.MSG_MHF_OPRT_MAIL] = handleMsgMhfOprtMail
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_FAVORITE_QUEST] = handleMsgMhfLoadFavoriteQuest
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_FAVORITE_QUEST] = handleMsgMhfSaveFavoriteQuest
|
||||||
|
handlerTable[network.MSG_MHF_REGISTER_EVENT] = handleMsgMhfRegisterEvent
|
||||||
|
handlerTable[network.MSG_MHF_RELEASE_EVENT] = handleMsgMhfReleaseEvent
|
||||||
|
handlerTable[network.MSG_MHF_TRANSIT_MESSAGE] = handleMsgMhfTransitMessage
|
||||||
|
handlerTable[network.MSG_SYS_reserve71] = handleMsgSysReserve71
|
||||||
|
handlerTable[network.MSG_SYS_reserve72] = handleMsgSysReserve72
|
||||||
|
handlerTable[network.MSG_SYS_reserve73] = handleMsgSysReserve73
|
||||||
|
handlerTable[network.MSG_SYS_reserve74] = handleMsgSysReserve74
|
||||||
|
handlerTable[network.MSG_SYS_reserve75] = handleMsgSysReserve75
|
||||||
|
handlerTable[network.MSG_SYS_reserve76] = handleMsgSysReserve76
|
||||||
|
handlerTable[network.MSG_SYS_reserve77] = handleMsgSysReserve77
|
||||||
|
handlerTable[network.MSG_SYS_reserve78] = handleMsgSysReserve78
|
||||||
|
handlerTable[network.MSG_SYS_reserve79] = handleMsgSysReserve79
|
||||||
|
handlerTable[network.MSG_SYS_reserve7A] = handleMsgSysReserve7A
|
||||||
|
handlerTable[network.MSG_SYS_reserve7B] = handleMsgSysReserve7B
|
||||||
|
handlerTable[network.MSG_SYS_reserve7C] = handleMsgSysReserve7C
|
||||||
|
handlerTable[network.MSG_CA_EXCHANGE_ITEM] = handleMsgCaExchangeItem
|
||||||
|
handlerTable[network.MSG_SYS_reserve7E] = handleMsgSysReserve7E
|
||||||
|
handlerTable[network.MSG_MHF_PRESENT_BOX] = handleMsgMhfPresentBox
|
||||||
|
handlerTable[network.MSG_MHF_SERVER_COMMAND] = handleMsgMhfServerCommand
|
||||||
|
handlerTable[network.MSG_MHF_SHUT_CLIENT] = handleMsgMhfShutClient
|
||||||
|
handlerTable[network.MSG_MHF_ANNOUNCE] = handleMsgMhfAnnounce
|
||||||
|
handlerTable[network.MSG_MHF_SET_LOGINWINDOW] = handleMsgMhfSetLoginwindow
|
||||||
|
handlerTable[network.MSG_SYS_TRANS_BINARY] = handleMsgSysTransBinary
|
||||||
|
handlerTable[network.MSG_SYS_COLLECT_BINARY] = handleMsgSysCollectBinary
|
||||||
|
handlerTable[network.MSG_SYS_GET_STATE] = handleMsgSysGetState
|
||||||
|
handlerTable[network.MSG_SYS_SERIALIZE] = handleMsgSysSerialize
|
||||||
|
handlerTable[network.MSG_SYS_ENUMLOBBY] = handleMsgSysEnumlobby
|
||||||
|
handlerTable[network.MSG_SYS_ENUMUSER] = handleMsgSysEnumuser
|
||||||
|
handlerTable[network.MSG_SYS_INFOKYSERVER] = handleMsgSysInfokyserver
|
||||||
|
handlerTable[network.MSG_MHF_GET_CA_UNIQUE_ID] = handleMsgMhfGetCaUniqueID
|
||||||
|
handlerTable[network.MSG_MHF_SET_CA_ACHIEVEMENT] = handleMsgMhfSetCaAchievement
|
||||||
|
handlerTable[network.MSG_MHF_CARAVAN_MY_SCORE] = handleMsgMhfCaravanMyScore
|
||||||
|
handlerTable[network.MSG_MHF_CARAVAN_RANKING] = handleMsgMhfCaravanRanking
|
||||||
|
handlerTable[network.MSG_MHF_CARAVAN_MY_RANK] = handleMsgMhfCaravanMyRank
|
||||||
|
handlerTable[network.MSG_MHF_CREATE_GUILD] = handleMsgMhfCreateGuild
|
||||||
|
handlerTable[network.MSG_MHF_OPERATE_GUILD] = handleMsgMhfOperateGuild
|
||||||
|
handlerTable[network.MSG_MHF_OPERATE_GUILD_MEMBER] = handleMsgMhfOperateGuildMember
|
||||||
|
handlerTable[network.MSG_MHF_INFO_GUILD] = handleMsgMhfInfoGuild
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_GUILD] = handleMsgMhfEnumerateGuild
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_GUILD] = handleMsgMhfUpdateGuild
|
||||||
|
handlerTable[network.MSG_MHF_ARRANGE_GUILD_MEMBER] = handleMsgMhfArrangeGuildMember
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_GUILD_MEMBER] = handleMsgMhfEnumerateGuildMember
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_CAMPAIGN] = handleMsgMhfEnumerateCampaign
|
||||||
|
handlerTable[network.MSG_MHF_STATE_CAMPAIGN] = handleMsgMhfStateCampaign
|
||||||
|
handlerTable[network.MSG_MHF_APPLY_CAMPAIGN] = handleMsgMhfApplyCampaign
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_ITEM] = handleMsgMhfEnumerateItem
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_ITEM] = handleMsgMhfAcquireItem
|
||||||
|
handlerTable[network.MSG_MHF_TRANSFER_ITEM] = handleMsgMhfTransferItem
|
||||||
|
handlerTable[network.MSG_MHF_MERCENARY_HUNTDATA] = handleMsgMhfMercenaryHuntdata
|
||||||
|
handlerTable[network.MSG_MHF_ENTRY_ROOKIE_GUILD] = handleMsgMhfEntryRookieGuild
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_QUEST] = handleMsgMhfEnumerateQuest
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_EVENT] = handleMsgMhfEnumerateEvent
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_PRICE] = handleMsgMhfEnumeratePrice
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_RANKING] = handleMsgMhfEnumerateRanking
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_ORDER] = handleMsgMhfEnumerateOrder
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_SHOP] = handleMsgMhfEnumerateShop
|
||||||
|
handlerTable[network.MSG_MHF_GET_EXTRA_INFO] = handleMsgMhfGetExtraInfo
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_INTERIOR] = handleMsgMhfUpdateInterior
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_HOUSE] = handleMsgMhfEnumerateHouse
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_HOUSE] = handleMsgMhfUpdateHouse
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_HOUSE] = handleMsgMhfLoadHouse
|
||||||
|
handlerTable[network.MSG_MHF_OPERATE_WAREHOUSE] = handleMsgMhfOperateWarehouse
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_WAREHOUSE] = handleMsgMhfEnumerateWarehouse
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_WAREHOUSE] = handleMsgMhfUpdateWarehouse
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_TITLE] = handleMsgMhfAcquireTitle
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_TITLE] = handleMsgMhfEnumerateTitle
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_GUILD_ITEM] = handleMsgMhfEnumerateGuildItem
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_GUILD_ITEM] = handleMsgMhfUpdateGuildItem
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_UNION_ITEM] = handleMsgMhfEnumerateUnionItem
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_UNION_ITEM] = handleMsgMhfUpdateUnionItem
|
||||||
|
handlerTable[network.MSG_MHF_CREATE_JOINT] = handleMsgMhfCreateJoint
|
||||||
|
handlerTable[network.MSG_MHF_OPERATE_JOINT] = handleMsgMhfOperateJoint
|
||||||
|
handlerTable[network.MSG_MHF_INFO_JOINT] = handleMsgMhfInfoJoint
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_GUILD_ICON] = handleMsgMhfUpdateGuildIcon
|
||||||
|
handlerTable[network.MSG_MHF_INFO_FESTA] = handleMsgMhfInfoFesta
|
||||||
|
handlerTable[network.MSG_MHF_ENTRY_FESTA] = handleMsgMhfEntryFesta
|
||||||
|
handlerTable[network.MSG_MHF_CHARGE_FESTA] = handleMsgMhfChargeFesta
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_FESTA] = handleMsgMhfAcquireFesta
|
||||||
|
handlerTable[network.MSG_MHF_STATE_FESTA_U] = handleMsgMhfStateFestaU
|
||||||
|
handlerTable[network.MSG_MHF_STATE_FESTA_G] = handleMsgMhfStateFestaG
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_FESTA_MEMBER] = handleMsgMhfEnumerateFestaMember
|
||||||
|
handlerTable[network.MSG_MHF_VOTE_FESTA] = handleMsgMhfVoteFesta
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_CAFE_ITEM] = handleMsgMhfAcquireCafeItem
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_CAFEPOINT] = handleMsgMhfUpdateCafepoint
|
||||||
|
handlerTable[network.MSG_MHF_CHECK_DAILY_CAFEPOINT] = handleMsgMhfCheckDailyCafepoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_COG_INFO] = handleMsgMhfGetCogInfo
|
||||||
|
handlerTable[network.MSG_MHF_CHECK_MONTHLY_ITEM] = handleMsgMhfCheckMonthlyItem
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_MONTHLY_ITEM] = handleMsgMhfAcquireMonthlyItem
|
||||||
|
handlerTable[network.MSG_MHF_CHECK_WEEKLY_STAMP] = handleMsgMhfCheckWeeklyStamp
|
||||||
|
handlerTable[network.MSG_MHF_EXCHANGE_WEEKLY_STAMP] = handleMsgMhfExchangeWeeklyStamp
|
||||||
|
handlerTable[network.MSG_MHF_CREATE_MERCENARY] = handleMsgMhfCreateMercenary
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_MERCENARY] = handleMsgMhfSaveMercenary
|
||||||
|
handlerTable[network.MSG_MHF_READ_MERCENARY_W] = handleMsgMhfReadMercenaryW
|
||||||
|
handlerTable[network.MSG_MHF_READ_MERCENARY_M] = handleMsgMhfReadMercenaryM
|
||||||
|
handlerTable[network.MSG_MHF_CONTRACT_MERCENARY] = handleMsgMhfContractMercenary
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_MERCENARY_LOG] = handleMsgMhfEnumerateMercenaryLog
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_GUACOT] = handleMsgMhfEnumerateGuacot
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_GUACOT] = handleMsgMhfUpdateGuacot
|
||||||
|
handlerTable[network.MSG_MHF_INFO_TOURNAMENT] = handleMsgMhfInfoTournament
|
||||||
|
handlerTable[network.MSG_MHF_ENTRY_TOURNAMENT] = handleMsgMhfEntryTournament
|
||||||
|
handlerTable[network.MSG_MHF_ENTER_TOURNAMENT_QUEST] = handleMsgMhfEnterTournamentQuest
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_TOURNAMENT] = handleMsgMhfAcquireTournament
|
||||||
|
handlerTable[network.MSG_MHF_GET_ACHIEVEMENT] = handleMsgMhfGetAchievement
|
||||||
|
handlerTable[network.MSG_MHF_RESET_ACHIEVEMENT] = handleMsgMhfResetAchievement
|
||||||
|
handlerTable[network.MSG_MHF_ADD_ACHIEVEMENT] = handleMsgMhfAddAchievement
|
||||||
|
handlerTable[network.MSG_MHF_PAYMENT_ACHIEVEMENT] = handleMsgMhfPaymentAchievement
|
||||||
|
handlerTable[network.MSG_MHF_DISPLAYED_ACHIEVEMENT] = handleMsgMhfDisplayedAchievement
|
||||||
|
handlerTable[network.MSG_MHF_INFO_SCENARIO_COUNTER] = handleMsgMhfInfoScenarioCounter
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_SCENARIO_DATA] = handleMsgMhfSaveScenarioData
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_SCENARIO_DATA] = handleMsgMhfLoadScenarioData
|
||||||
|
handlerTable[network.MSG_MHF_GET_BBS_SNS_STATUS] = handleMsgMhfGetBbsSnsStatus
|
||||||
|
handlerTable[network.MSG_MHF_APPLY_BBS_ARTICLE] = handleMsgMhfApplyBbsArticle
|
||||||
|
handlerTable[network.MSG_MHF_GET_ETC_POINTS] = handleMsgMhfGetEtcPoints
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_ETC_POINT] = handleMsgMhfUpdateEtcPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_MYHOUSE_INFO] = handleMsgMhfGetMyhouseInfo
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_MYHOUSE_INFO] = handleMsgMhfUpdateMyhouseInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_WEEKLY_SCHEDULE] = handleMsgMhfGetWeeklySchedule
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_INV_GUILD] = handleMsgMhfEnumerateInvGuild
|
||||||
|
handlerTable[network.MSG_MHF_OPERATION_INV_GUILD] = handleMsgMhfOperationInvGuild
|
||||||
|
handlerTable[network.MSG_MHF_STAMPCARD_STAMP] = handleMsgMhfStampcardStamp
|
||||||
|
handlerTable[network.MSG_MHF_STAMPCARD_PRIZE] = handleMsgMhfStampcardPrize
|
||||||
|
handlerTable[network.MSG_MHF_UNRESERVE_SRG] = handleMsgMhfUnreserveSrg
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_PLATE_DATA] = handleMsgMhfLoadPlateData
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_PLATE_DATA] = handleMsgMhfSavePlateData
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_PLATE_BOX] = handleMsgMhfLoadPlateBox
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_PLATE_BOX] = handleMsgMhfSavePlateBox
|
||||||
|
handlerTable[network.MSG_MHF_READ_GUILDCARD] = handleMsgMhfReadGuildcard
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_GUILDCARD] = handleMsgMhfUpdateGuildcard
|
||||||
|
handlerTable[network.MSG_MHF_READ_BEAT_LEVEL] = handleMsgMhfReadBeatLevel
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_BEAT_LEVEL] = handleMsgMhfUpdateBeatLevel
|
||||||
|
handlerTable[network.MSG_MHF_READ_BEAT_LEVEL_ALL_RANKING] = handleMsgMhfReadBeatLevelAllRanking
|
||||||
|
handlerTable[network.MSG_MHF_READ_BEAT_LEVEL_MY_RANKING] = handleMsgMhfReadBeatLevelMyRanking
|
||||||
|
handlerTable[network.MSG_MHF_READ_LAST_WEEK_BEAT_RANKING] = handleMsgMhfReadLastWeekBeatRanking
|
||||||
|
handlerTable[network.MSG_MHF_ACCEPT_READ_REWARD] = handleMsgMhfAcceptReadReward
|
||||||
|
handlerTable[network.MSG_MHF_GET_ADDITIONAL_BEAT_REWARD] = handleMsgMhfGetAdditionalBeatReward
|
||||||
|
handlerTable[network.MSG_MHF_GET_FIXED_SEIBATU_RANKING_TABLE] = handleMsgMhfGetFixedSeibatuRankingTable
|
||||||
|
handlerTable[network.MSG_MHF_GET_BBS_USER_STATUS] = handleMsgMhfGetBbsUserStatus
|
||||||
|
handlerTable[network.MSG_MHF_KICK_EXPORT_FORCE] = handleMsgMhfKickExportForce
|
||||||
|
handlerTable[network.MSG_MHF_GET_BREAK_SEIBATU_LEVEL_REWARD] = handleMsgMhfGetBreakSeibatuLevelReward
|
||||||
|
handlerTable[network.MSG_MHF_GET_WEEKLY_SEIBATU_RANKING_REWARD] = handleMsgMhfGetWeeklySeibatuRankingReward
|
||||||
|
handlerTable[network.MSG_MHF_GET_EARTH_STATUS] = handleMsgMhfGetEarthStatus
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_PARTNER] = handleMsgMhfLoadPartner
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_PARTNER] = handleMsgMhfSavePartner
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_MISSION_LIST] = handleMsgMhfGetGuildMissionList
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_MISSION_RECORD] = handleMsgMhfGetGuildMissionRecord
|
||||||
|
handlerTable[network.MSG_MHF_ADD_GUILD_MISSION_COUNT] = handleMsgMhfAddGuildMissionCount
|
||||||
|
handlerTable[network.MSG_MHF_SET_GUILD_MISSION_TARGET] = handleMsgMhfSetGuildMissionTarget
|
||||||
|
handlerTable[network.MSG_MHF_CANCEL_GUILD_MISSION_TARGET] = handleMsgMhfCancelGuildMissionTarget
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_OTOMO_AIROU] = handleMsgMhfLoadOtomoAirou
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_OTOMO_AIROU] = handleMsgMhfSaveOtomoAirou
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_GUILD_TRESURE] = handleMsgMhfEnumerateGuildTresure
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_AIROULIST] = handleMsgMhfEnumerateAiroulist
|
||||||
|
handlerTable[network.MSG_MHF_REGIST_GUILD_TRESURE] = handleMsgMhfRegistGuildTresure
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_GUILD_TRESURE] = handleMsgMhfAcquireGuildTresure
|
||||||
|
handlerTable[network.MSG_MHF_OPERATE_GUILD_TRESURE_REPORT] = handleMsgMhfOperateGuildTresureReport
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_TRESURE_SOUVENIR] = handleMsgMhfGetGuildTresureSouvenir
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_GUILD_TRESURE_SOUVENIR] = handleMsgMhfAcquireGuildTresureSouvenir
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_FESTA_INTERMEDIATE_PRIZE] = handleMsgMhfEnumerateFestaIntermediatePrize
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_FESTA_INTERMEDIATE_PRIZE] = handleMsgMhfAcquireFestaIntermediatePrize
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_DECO_MYSET] = handleMsgMhfLoadDecoMyset
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_DECO_MYSET] = handleMsgMhfSaveDecoMyset
|
||||||
|
handlerTable[network.MSG_MHF_reserve010F] = handleMsgMhfReserve010F
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_GUILD_COOKING] = handleMsgMhfLoadGuildCooking
|
||||||
|
handlerTable[network.MSG_MHF_REGIST_GUILD_COOKING] = handleMsgMhfRegistGuildCooking
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_GUILD_ADVENTURE] = handleMsgMhfLoadGuildAdventure
|
||||||
|
handlerTable[network.MSG_MHF_REGIST_GUILD_ADVENTURE] = handleMsgMhfRegistGuildAdventure
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_GUILD_ADVENTURE] = handleMsgMhfAcquireGuildAdventure
|
||||||
|
handlerTable[network.MSG_MHF_CHARGE_GUILD_ADVENTURE] = handleMsgMhfChargeGuildAdventure
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_LEGEND_DISPATCH] = handleMsgMhfLoadLegendDispatch
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_HUNTER_NAVI] = handleMsgMhfLoadHunterNavi
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_HUNTER_NAVI] = handleMsgMhfSaveHunterNavi
|
||||||
|
handlerTable[network.MSG_MHF_REGIST_SPABI_TIME] = handleMsgMhfRegistSpabiTime
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_WEEKLY_BONUS_MASTER] = handleMsgMhfGetGuildWeeklyBonusMaster
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_WEEKLY_BONUS_ACTIVE_COUNT] = handleMsgMhfGetGuildWeeklyBonusActiveCount
|
||||||
|
handlerTable[network.MSG_MHF_ADD_GUILD_WEEKLY_BONUS_EXCEPTIONAL_USER] = handleMsgMhfAddGuildWeeklyBonusExceptionalUser
|
||||||
|
handlerTable[network.MSG_MHF_GET_TOWER_INFO] = handleMsgMhfGetTowerInfo
|
||||||
|
handlerTable[network.MSG_MHF_POST_TOWER_INFO] = handleMsgMhfPostTowerInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_GEM_INFO] = handleMsgMhfGetGemInfo
|
||||||
|
handlerTable[network.MSG_MHF_POST_GEM_INFO] = handleMsgMhfPostGemInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_EARTH_VALUE] = handleMsgMhfGetEarthValue
|
||||||
|
handlerTable[network.MSG_MHF_DEBUG_POST_VALUE] = handleMsgMhfDebugPostValue
|
||||||
|
handlerTable[network.MSG_MHF_GET_PAPER_DATA] = handleMsgMhfGetPaperData
|
||||||
|
handlerTable[network.MSG_MHF_GET_NOTICE] = handleMsgMhfGetNotice
|
||||||
|
handlerTable[network.MSG_MHF_POST_NOTICE] = handleMsgMhfPostNotice
|
||||||
|
handlerTable[network.MSG_MHF_GET_BOOST_TIME] = handleMsgMhfGetBoostTime
|
||||||
|
handlerTable[network.MSG_MHF_POST_BOOST_TIME] = handleMsgMhfPostBoostTime
|
||||||
|
handlerTable[network.MSG_MHF_GET_BOOST_TIME_LIMIT] = handleMsgMhfGetBoostTimeLimit
|
||||||
|
handlerTable[network.MSG_MHF_POST_BOOST_TIME_LIMIT] = handleMsgMhfPostBoostTimeLimit
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_FESTA_PERSONAL_PRIZE] = handleMsgMhfEnumerateFestaPersonalPrize
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_FESTA_PERSONAL_PRIZE] = handleMsgMhfAcquireFestaPersonalPrize
|
||||||
|
handlerTable[network.MSG_MHF_GET_RAND_FROM_TABLE] = handleMsgMhfGetRandFromTable
|
||||||
|
handlerTable[network.MSG_MHF_GET_CAFE_DURATION] = handleMsgMhfGetCafeDuration
|
||||||
|
handlerTable[network.MSG_MHF_GET_CAFE_DURATION_BONUS_INFO] = handleMsgMhfGetCafeDurationBonusInfo
|
||||||
|
handlerTable[network.MSG_MHF_RECEIVE_CAFE_DURATION_BONUS] = handleMsgMhfReceiveCafeDurationBonus
|
||||||
|
handlerTable[network.MSG_MHF_POST_CAFE_DURATION_BONUS_RECEIVED] = handleMsgMhfPostCafeDurationBonusReceived
|
||||||
|
handlerTable[network.MSG_MHF_GET_GACHA_POINT] = handleMsgMhfGetGachaPoint
|
||||||
|
handlerTable[network.MSG_MHF_USE_GACHA_POINT] = handleMsgMhfUseGachaPoint
|
||||||
|
handlerTable[network.MSG_MHF_EXCHANGE_FPOINT_2_ITEM] = handleMsgMhfExchangeFpoint2Item
|
||||||
|
handlerTable[network.MSG_MHF_EXCHANGE_ITEM_2_FPOINT] = handleMsgMhfExchangeItem2Fpoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_FPOINT_EXCHANGE_LIST] = handleMsgMhfGetFpointExchangeList
|
||||||
|
handlerTable[network.MSG_MHF_PLAY_STEPUP_GACHA] = handleMsgMhfPlayStepupGacha
|
||||||
|
handlerTable[network.MSG_MHF_RECEIVE_GACHA_ITEM] = handleMsgMhfReceiveGachaItem
|
||||||
|
handlerTable[network.MSG_MHF_GET_STEPUP_STATUS] = handleMsgMhfGetStepupStatus
|
||||||
|
handlerTable[network.MSG_MHF_PLAY_FREE_GACHA] = handleMsgMhfPlayFreeGacha
|
||||||
|
handlerTable[network.MSG_MHF_GET_TINY_BIN] = handleMsgMhfGetTinyBin
|
||||||
|
handlerTable[network.MSG_MHF_POST_TINY_BIN] = handleMsgMhfPostTinyBin
|
||||||
|
handlerTable[network.MSG_MHF_GET_SENYU_DAILY_COUNT] = handleMsgMhfGetSenyuDailyCount
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_TARGET_MEMBER_NUM] = handleMsgMhfGetGuildTargetMemberNum
|
||||||
|
handlerTable[network.MSG_MHF_GET_BOOST_RIGHT] = handleMsgMhfGetBoostRight
|
||||||
|
handlerTable[network.MSG_MHF_START_BOOST_TIME] = handleMsgMhfStartBoostTime
|
||||||
|
handlerTable[network.MSG_MHF_POST_BOOST_TIME_QUEST_RETURN] = handleMsgMhfPostBoostTimeQuestReturn
|
||||||
|
handlerTable[network.MSG_MHF_GET_BOX_GACHA_INFO] = handleMsgMhfGetBoxGachaInfo
|
||||||
|
handlerTable[network.MSG_MHF_PLAY_BOX_GACHA] = handleMsgMhfPlayBoxGacha
|
||||||
|
handlerTable[network.MSG_MHF_RESET_BOX_GACHA_INFO] = handleMsgMhfResetBoxGachaInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_SEIBATTLE] = handleMsgMhfGetSeibattle
|
||||||
|
handlerTable[network.MSG_MHF_POST_SEIBATTLE] = handleMsgMhfPostSeibattle
|
||||||
|
handlerTable[network.MSG_MHF_GET_RYOUDAMA] = handleMsgMhfGetRyoudama
|
||||||
|
handlerTable[network.MSG_MHF_POST_RYOUDAMA] = handleMsgMhfPostRyoudama
|
||||||
|
handlerTable[network.MSG_MHF_GET_TENROUIRAI] = handleMsgMhfGetTenrouirai
|
||||||
|
handlerTable[network.MSG_MHF_POST_TENROUIRAI] = handleMsgMhfPostTenrouirai
|
||||||
|
handlerTable[network.MSG_MHF_POST_GUILD_SCOUT] = handleMsgMhfPostGuildScout
|
||||||
|
handlerTable[network.MSG_MHF_CANCEL_GUILD_SCOUT] = handleMsgMhfCancelGuildScout
|
||||||
|
handlerTable[network.MSG_MHF_ANSWER_GUILD_SCOUT] = handleMsgMhfAnswerGuildScout
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_SCOUT_LIST] = handleMsgMhfGetGuildScoutList
|
||||||
|
handlerTable[network.MSG_MHF_GET_GUILD_MANAGE_RIGHT] = handleMsgMhfGetGuildManageRight
|
||||||
|
handlerTable[network.MSG_MHF_SET_GUILD_MANAGE_RIGHT] = handleMsgMhfSetGuildManageRight
|
||||||
|
handlerTable[network.MSG_MHF_PLAY_NORMAL_GACHA] = handleMsgMhfPlayNormalGacha
|
||||||
|
handlerTable[network.MSG_MHF_GET_DAILY_MISSION_MASTER] = handleMsgMhfGetDailyMissionMaster
|
||||||
|
handlerTable[network.MSG_MHF_GET_DAILY_MISSION_PERSONAL] = handleMsgMhfGetDailyMissionPersonal
|
||||||
|
handlerTable[network.MSG_MHF_SET_DAILY_MISSION_PERSONAL] = handleMsgMhfSetDailyMissionPersonal
|
||||||
|
handlerTable[network.MSG_MHF_GET_GACHA_PLAY_HISTORY] = handleMsgMhfGetGachaPlayHistory
|
||||||
|
handlerTable[network.MSG_MHF_GET_REJECT_GUILD_SCOUT] = handleMsgMhfGetRejectGuildScout
|
||||||
|
handlerTable[network.MSG_MHF_SET_REJECT_GUILD_SCOUT] = handleMsgMhfSetRejectGuildScout
|
||||||
|
handlerTable[network.MSG_MHF_GET_CA_ACHIEVEMENT_HIST] = handleMsgMhfGetCaAchievementHist
|
||||||
|
handlerTable[network.MSG_MHF_SET_CA_ACHIEVEMENT_HIST] = handleMsgMhfSetCaAchievementHist
|
||||||
|
handlerTable[network.MSG_MHF_GET_KEEP_LOGIN_BOOST_STATUS] = handleMsgMhfGetKeepLoginBoostStatus
|
||||||
|
handlerTable[network.MSG_MHF_USE_KEEP_LOGIN_BOOST] = handleMsgMhfUseKeepLoginBoost
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_SCHEDULE] = handleMsgMhfGetUdSchedule
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_INFO] = handleMsgMhfGetUdInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_KIJU_INFO] = handleMsgMhfGetKijuInfo
|
||||||
|
handlerTable[network.MSG_MHF_SET_KIJU] = handleMsgMhfSetKiju
|
||||||
|
handlerTable[network.MSG_MHF_ADD_UD_POINT] = handleMsgMhfAddUdPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_MY_POINT] = handleMsgMhfGetUdMyPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TOTAL_POINT_INFO] = handleMsgMhfGetUdTotalPointInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_BONUS_QUEST_INFO] = handleMsgMhfGetUdBonusQuestInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_SELECTED_COLOR_INFO] = handleMsgMhfGetUdSelectedColorInfo
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_MONSTER_POINT] = handleMsgMhfGetUdMonsterPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_DAILY_PRESENT_LIST] = handleMsgMhfGetUdDailyPresentList
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_NORMA_PRESENT_LIST] = handleMsgMhfGetUdNormaPresentList
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_RANKING_REWARD_LIST] = handleMsgMhfGetUdRankingRewardList
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_UD_ITEM] = handleMsgMhfAcquireUdItem
|
||||||
|
handlerTable[network.MSG_MHF_GET_REWARD_SONG] = handleMsgMhfGetRewardSong
|
||||||
|
handlerTable[network.MSG_MHF_USE_REWARD_SONG] = handleMsgMhfUseRewardSong
|
||||||
|
handlerTable[network.MSG_MHF_ADD_REWARD_SONG_COUNT] = handleMsgMhfAddRewardSongCount
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_RANKING] = handleMsgMhfGetUdRanking
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_MY_RANKING] = handleMsgMhfGetUdMyRanking
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_MONTHLY_REWARD] = handleMsgMhfAcquireMonthlyReward
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_GUILD_MAP_INFO] = handleMsgMhfGetUdGuildMapInfo
|
||||||
|
handlerTable[network.MSG_MHF_GENERATE_UD_GUILD_MAP] = handleMsgMhfGenerateUdGuildMap
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_POINT] = handleMsgMhfGetUdTacticsPoint
|
||||||
|
handlerTable[network.MSG_MHF_ADD_UD_TACTICS_POINT] = handleMsgMhfAddUdTacticsPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_RANKING] = handleMsgMhfGetUdTacticsRanking
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_REWARD_LIST] = handleMsgMhfGetUdTacticsRewardList
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_LOG] = handleMsgMhfGetUdTacticsLog
|
||||||
|
handlerTable[network.MSG_MHF_GET_EQUIP_SKIN_HIST] = handleMsgMhfGetEquipSkinHist
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_EQUIP_SKIN_HIST] = handleMsgMhfUpdateEquipSkinHist
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_FOLLOWER] = handleMsgMhfGetUdTacticsFollower
|
||||||
|
handlerTable[network.MSG_MHF_SET_UD_TACTICS_FOLLOWER] = handleMsgMhfSetUdTacticsFollower
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_SHOP_COIN] = handleMsgMhfGetUdShopCoin
|
||||||
|
handlerTable[network.MSG_MHF_USE_UD_SHOP_COIN] = handleMsgMhfUseUdShopCoin
|
||||||
|
handlerTable[network.MSG_MHF_GET_ENHANCED_MINIDATA] = handleMsgMhfGetEnhancedMinidata
|
||||||
|
handlerTable[network.MSG_MHF_SET_ENHANCED_MINIDATA] = handleMsgMhfSetEnhancedMinidata
|
||||||
|
handlerTable[network.MSG_MHF_SEX_CHANGER] = handleMsgMhfSexChanger
|
||||||
|
handlerTable[network.MSG_MHF_GET_LOBBY_CROWD] = handleMsgMhfGetLobbyCrowd
|
||||||
|
handlerTable[network.MSG_SYS_reserve180] = handleMsgSysReserve180
|
||||||
|
handlerTable[network.MSG_MHF_GUILD_HUNTDATA] = handleMsgMhfGuildHuntdata
|
||||||
|
handlerTable[network.MSG_MHF_ADD_KOURYOU_POINT] = handleMsgMhfAddKouryouPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_KOURYOU_POINT] = handleMsgMhfGetKouryouPoint
|
||||||
|
handlerTable[network.MSG_MHF_EXCHANGE_KOURYOU_POINT] = handleMsgMhfExchangeKouryouPoint
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_BONUS_QUEST] = handleMsgMhfGetUdTacticsBonusQuest
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_FIRST_QUEST_BONUS] = handleMsgMhfGetUdTacticsFirstQuestBonus
|
||||||
|
handlerTable[network.MSG_MHF_GET_UD_TACTICS_REMAINING_POINT] = handleMsgMhfGetUdTacticsRemainingPoint
|
||||||
|
handlerTable[network.MSG_SYS_reserve188] = handleMsgSysReserve188
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_PLATE_MYSET] = handleMsgMhfLoadPlateMyset
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_PLATE_MYSET] = handleMsgMhfSavePlateMyset
|
||||||
|
handlerTable[network.MSG_SYS_reserve18B] = handleMsgSysReserve18B
|
||||||
|
handlerTable[network.MSG_MHF_GET_RESTRICTION_EVENT] = handleMsgMhfGetRestrictionEvent
|
||||||
|
handlerTable[network.MSG_MHF_SET_RESTRICTION_EVENT] = handleMsgMhfSetRestrictionEvent
|
||||||
|
handlerTable[network.MSG_SYS_reserve18E] = handleMsgSysReserve18E
|
||||||
|
handlerTable[network.MSG_SYS_reserve18F] = handleMsgSysReserve18F
|
||||||
|
handlerTable[network.MSG_MHF_GET_TREND_WEAPON] = handleMsgMhfGetTrendWeapon
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_USE_TREND_WEAPON_LOG] = handleMsgMhfUpdateUseTrendWeaponLog
|
||||||
|
handlerTable[network.MSG_SYS_reserve192] = handleMsgSysReserve192
|
||||||
|
handlerTable[network.MSG_SYS_reserve193] = handleMsgSysReserve193
|
||||||
|
handlerTable[network.MSG_SYS_reserve194] = handleMsgSysReserve194
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_RENGOKU_DATA] = handleMsgMhfSaveRengokuData
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_RENGOKU_DATA] = handleMsgMhfLoadRengokuData
|
||||||
|
handlerTable[network.MSG_MHF_GET_RENGOKU_BINARY] = handleMsgMhfGetRengokuBinary
|
||||||
|
handlerTable[network.MSG_MHF_ENUMERATE_RENGOKU_RANKING] = handleMsgMhfEnumerateRengokuRanking
|
||||||
|
handlerTable[network.MSG_MHF_GET_RENGOKU_RANKING_RANK] = handleMsgMhfGetRengokuRankingRank
|
||||||
|
handlerTable[network.MSG_MHF_ACQUIRE_EXCHANGE_SHOP] = handleMsgMhfAcquireExchangeShop
|
||||||
|
handlerTable[network.MSG_SYS_reserve19B] = handleMsgSysReserve19B
|
||||||
|
handlerTable[network.MSG_MHF_SAVE_MEZFES_DATA] = handleMsgMhfSaveMezfesData
|
||||||
|
handlerTable[network.MSG_MHF_LOAD_MEZFES_DATA] = handleMsgMhfLoadMezfesData
|
||||||
|
handlerTable[network.MSG_SYS_reserve19E] = handleMsgSysReserve19E
|
||||||
|
handlerTable[network.MSG_SYS_reserve19F] = handleMsgSysReserve19F
|
||||||
|
handlerTable[network.MSG_MHF_UPDATE_FORCE_GUILD_RANK] = handleMsgMhfUpdateForceGuildRank
|
||||||
|
handlerTable[network.MSG_MHF_RESET_TITLE] = handleMsgMhfResetTitle
|
||||||
|
handlerTable[network.MSG_SYS_reserve202] = handleMsgSysReserve202
|
||||||
|
handlerTable[network.MSG_SYS_reserve203] = handleMsgSysReserve203
|
||||||
|
handlerTable[network.MSG_SYS_reserve204] = handleMsgSysReserve204
|
||||||
|
handlerTable[network.MSG_SYS_reserve205] = handleMsgSysReserve205
|
||||||
|
handlerTable[network.MSG_SYS_reserve206] = handleMsgSysReserve206
|
||||||
|
handlerTable[network.MSG_SYS_reserve207] = handleMsgSysReserve207
|
||||||
|
handlerTable[network.MSG_SYS_reserve208] = handleMsgSysReserve208
|
||||||
|
handlerTable[network.MSG_SYS_reserve209] = handleMsgSysReserve209
|
||||||
|
handlerTable[network.MSG_SYS_reserve20A] = handleMsgSysReserve20A
|
||||||
|
handlerTable[network.MSG_SYS_reserve20B] = handleMsgSysReserve20B
|
||||||
|
handlerTable[network.MSG_SYS_reserve20C] = handleMsgSysReserve20C
|
||||||
|
handlerTable[network.MSG_SYS_reserve20D] = handleMsgSysReserve20D
|
||||||
|
handlerTable[network.MSG_SYS_reserve20E] = handleMsgSysReserve20E
|
||||||
|
handlerTable[network.MSG_SYS_reserve20F] = handleMsgSysReserve20F
|
||||||
|
}
|
||||||
436
channelserver/handlers.go
Normal file
436
channelserver/handlers.go
Normal file
@@ -0,0 +1,436 @@
|
|||||||
|
package channelserver
|
||||||
|
|
||||||
|
import "github.com/Andoryuuta/Erupe/network/mhfpacket"
|
||||||
|
|
||||||
|
func handleMsgHead(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve01(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve02(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve03(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve04(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve05(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve06(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve07(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysAddObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDelObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDispObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysHideObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve0C(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve0D(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve0E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysExtendThreshold(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEnd(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysNop(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysAck(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysTerminalLog(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysLogin(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysLogout(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysSetStatus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysPing(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCastBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysHideClient(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysTime(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCastedBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysGetFile(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysIssueLogkey(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysRecordLog(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEcho(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCreateStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysStageDestruct(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEnterStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysBackStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysMoveStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysLeaveStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysLockStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysUnlockStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserveStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysUnreserveStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysSetStagePass(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysWaitStageBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysSetStageBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysGetStageBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEnumerateClient(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEnumerateStage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCreateMutex(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCreateOpenMutex(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDeleteMutex(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysOpenMutex(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCloseMutex(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCreateSemaphore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCreateAcquireSemaphore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDeleteSemaphore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysAcquireSemaphore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReleaseSemaphore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysLockGlobalSema(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysUnlockGlobalSema(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCheckSemaphore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysOperateRegister(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysLoadRegister(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysNotifyRegister(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCreateObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDeleteObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysPositionObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysRotateObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDuplicateObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysSetObjectBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysGetObjectBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysGetObjectOwner(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysUpdateObjectBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCleanupObject(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve4A(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve4B(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve4C(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve4D(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve4E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve4F(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysInsertUser(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysDeleteUser(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysSetUserBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysGetUserBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysNotifyUserBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve55(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve56(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve57(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysUpdateRight(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysAuthQuery(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysAuthData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysAuthTerminal(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve5C(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysRightsReload(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve5E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve5F(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSavedata(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoaddata(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfListMember(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOprMember(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateDistItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfApplyDistItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireDistItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetDistDescription(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSendMail(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadMail(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfListMail(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOprtMail(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadFavoriteQuest(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveFavoriteQuest(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfRegisterEvent(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReleaseEvent(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfTransitMessage(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve71(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve72(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve73(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve74(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve75(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve76(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve77(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve78(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve79(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve7A(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve7B(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve7C(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgCaExchangeItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve7E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPresentBox(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfServerCommand(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfShutClient(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAnnounce(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetLoginwindow(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysTransBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysCollectBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysGetState(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysSerialize(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEnumlobby(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysEnumuser(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysInfokyserver(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetCaUniqueID(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetCaAchievement(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCaravanMyScore(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCaravanRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCaravanMyRank(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCreateGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOperateGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOperateGuildMember(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfInfoGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfArrangeGuildMember(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateGuildMember(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateCampaign(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfStateCampaign(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfApplyCampaign(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfTransferItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfMercenaryHuntdata(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEntryRookieGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateQuest(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateEvent(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumeratePrice(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateOrder(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateShop(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetExtraInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateInterior(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateHouse(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateHouse(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadHouse(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOperateWarehouse(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateWarehouse(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateWarehouse(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireTitle(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateTitle(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateGuildItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateGuildItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateUnionItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateUnionItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCreateJoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOperateJoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfInfoJoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateGuildIcon(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfInfoFesta(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEntryFesta(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfChargeFesta(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireFesta(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfStateFestaU(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfStateFestaG(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateFestaMember(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfVoteFesta(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireCafeItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateCafepoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCheckDailyCafepoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetCogInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCheckMonthlyItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireMonthlyItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCheckWeeklyStamp(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfExchangeWeeklyStamp(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCreateMercenary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveMercenary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadMercenaryW(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadMercenaryM(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfContractMercenary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateMercenaryLog(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateGuacot(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateGuacot(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfInfoTournament(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEntryTournament(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnterTournamentQuest(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireTournament(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetAchievement(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfResetAchievement(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddAchievement(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPaymentAchievement(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfDisplayedAchievement(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfInfoScenarioCounter(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveScenarioData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadScenarioData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBbsSnsStatus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfApplyBbsArticle(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetEtcPoints(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateEtcPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetMyhouseInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateMyhouseInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetWeeklySchedule(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateInvGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOperationInvGuild(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfStampcardStamp(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfStampcardPrize(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUnreserveSrg(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadPlateData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSavePlateData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadPlateBox(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSavePlateBox(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadGuildcard(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateGuildcard(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadBeatLevel(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateBeatLevel(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadBeatLevelAllRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadBeatLevelMyRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReadLastWeekBeatRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcceptReadReward(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetAdditionalBeatReward(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetFixedSeibatuRankingTable(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBbsUserStatus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfKickExportForce(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBreakSeibatuLevelReward(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetWeeklySeibatuRankingReward(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetEarthStatus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadPartner(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSavePartner(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildMissionList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildMissionRecord(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddGuildMissionCount(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetGuildMissionTarget(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCancelGuildMissionTarget(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadOtomoAirou(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveOtomoAirou(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateGuildTresure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateAiroulist(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfRegistGuildTresure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireGuildTresure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfOperateGuildTresureReport(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildTresureSouvenir(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireGuildTresureSouvenir(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateFestaIntermediatePrize(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireFestaIntermediatePrize(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadDecoMyset(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveDecoMyset(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReserve010F(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadGuildCooking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfRegistGuildCooking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadGuildAdventure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfRegistGuildAdventure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireGuildAdventure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfChargeGuildAdventure(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadLegendDispatch(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadHunterNavi(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveHunterNavi(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfRegistSpabiTime(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildWeeklyBonusMaster(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildWeeklyBonusActiveCount(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddGuildWeeklyBonusExceptionalUser(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetTowerInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostTowerInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGemInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostGemInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetEarthValue(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfDebugPostValue(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetPaperData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetNotice(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostNotice(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBoostTime(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostBoostTime(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBoostTimeLimit(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostBoostTimeLimit(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateFestaPersonalPrize(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireFestaPersonalPrize(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRandFromTable(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetCafeDuration(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetCafeDurationBonusInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReceiveCafeDurationBonus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostCafeDurationBonusReceived(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGachaPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUseGachaPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfExchangeFpoint2Item(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfExchangeItem2Fpoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetFpointExchangeList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPlayStepupGacha(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfReceiveGachaItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetStepupStatus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPlayFreeGacha(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetTinyBin(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostTinyBin(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetSenyuDailyCount(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildTargetMemberNum(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBoostRight(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfStartBoostTime(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostBoostTimeQuestReturn(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetBoxGachaInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPlayBoxGacha(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfResetBoxGachaInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetSeibattle(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostSeibattle(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRyoudama(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostRyoudama(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetTenrouirai(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostTenrouirai(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPostGuildScout(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfCancelGuildScout(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAnswerGuildScout(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildScoutList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGuildManageRight(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetGuildManageRight(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfPlayNormalGacha(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetDailyMissionMaster(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetDailyMissionPersonal(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetDailyMissionPersonal(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetGachaPlayHistory(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRejectGuildScout(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetRejectGuildScout(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetCaAchievementHist(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetCaAchievementHist(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetKeepLoginBoostStatus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUseKeepLoginBoost(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdSchedule(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetKijuInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetKiju(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddUdPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdMyPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTotalPointInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdBonusQuestInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdSelectedColorInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdMonsterPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdDailyPresentList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdNormaPresentList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdRankingRewardList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireUdItem(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRewardSong(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUseRewardSong(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddRewardSongCount(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdMyRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireMonthlyReward(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdGuildMapInfo(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGenerateUdGuildMap(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddUdTacticsPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsRewardList(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsLog(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetEquipSkinHist(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateEquipSkinHist(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsFollower(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetUdTacticsFollower(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdShopCoin(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUseUdShopCoin(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetEnhancedMinidata(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetEnhancedMinidata(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSexChanger(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetLobbyCrowd(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve180(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGuildHuntdata(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAddKouryouPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetKouryouPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfExchangeKouryouPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsBonusQuest(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsFirstQuestBonus(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetUdTacticsRemainingPoint(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve188(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadPlateMyset(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSavePlateMyset(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve18B(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRestrictionEvent(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSetRestrictionEvent(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve18E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve18F(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetTrendWeapon(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateUseTrendWeaponLog(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve192(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve193(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve194(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveRengokuData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadRengokuData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRengokuBinary(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfEnumerateRengokuRanking(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfGetRengokuRankingRank(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfAcquireExchangeShop(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve19B(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfSaveMezfesData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfLoadMezfesData(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve19E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve19F(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfUpdateForceGuildRank(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgMhfResetTitle(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve202(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve203(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve204(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve205(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve206(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve207(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve208(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve209(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve20A(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve20B(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve20C(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve20D(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve20E(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
|
func handleMsgSysReserve20F(s *Session, p mhfpacket.MHFPacket) {}
|
||||||
@@ -3,11 +3,11 @@ package channelserver
|
|||||||
import (
|
import (
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/Andoryuuta/Erupe/network"
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/Erupe/network/mhfpacket"
|
||||||
"github.com/Andoryuuta/byteframe"
|
"github.com/Andoryuuta/byteframe"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -44,12 +44,44 @@ func (s *Session) Start() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
handlePacket(s.cryptConn, pkt)
|
s.handlePacketGroup(pkt)
|
||||||
|
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Session) handlePacketGroup(pktGroup []byte) {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
fmt.Println("Recovered from panic.")
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
bf := byteframe.NewByteFrameFromBytes(pktGroup)
|
||||||
|
opcode := network.PacketID(bf.ReadUint16())
|
||||||
|
|
||||||
|
fmt.Printf("Opcode: %s\n", opcode)
|
||||||
|
fmt.Printf("Data:\n%s\n", hex.Dump(pktGroup))
|
||||||
|
|
||||||
|
// Get the packet parser and handler for this opcode.
|
||||||
|
mhfPkt := mhfpacket.MHFPacketFromOpcode(opcode)
|
||||||
|
if mhfPkt == nil {
|
||||||
|
fmt.Println("Got opcode which we don't know how to parse, can't parse anymore for this group")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse and handle the packet
|
||||||
|
mhfPkt.Parse(bf)
|
||||||
|
handlerTable[opcode](s, mhfPkt)
|
||||||
|
|
||||||
|
// If there is more data on the stream that the .Parse method didn't read, then read another packet off it.
|
||||||
|
remainingData := bf.DataFromCurrent()
|
||||||
|
if len(remainingData) >= 2 && (opcode == network.MSG_SYS_TIME || opcode == network.MSG_MHF_INFO_FESTA) {
|
||||||
|
s.handlePacketGroup(remainingData)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
var loadDataCount int
|
var loadDataCount int
|
||||||
var getPaperDataCount int
|
var getPaperDataCount int
|
||||||
|
|
||||||
@@ -259,3 +291,4 @@ func handlePacket(cc *network.CryptConn, pkt []byte) {
|
|||||||
handlePacket(cc, remainingData)
|
handlePacket(cc, remainingData)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|||||||
7
main.go
7
main.go
@@ -6,6 +6,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Andoryuuta/Erupe/channelserver"
|
"github.com/Andoryuuta/Erupe/channelserver"
|
||||||
|
_ "github.com/Andoryuuta/Erupe/network/mhfpacket"
|
||||||
"github.com/Andoryuuta/Erupe/signserver"
|
"github.com/Andoryuuta/Erupe/signserver"
|
||||||
_ "github.com/lib/pq"
|
_ "github.com/lib/pq"
|
||||||
)
|
)
|
||||||
@@ -37,9 +38,11 @@ func main() {
|
|||||||
DB: db,
|
DB: db,
|
||||||
ListenAddr: ":53312",
|
ListenAddr: ":53312",
|
||||||
})
|
})
|
||||||
go signServer.Listen()
|
err = signServer.Start()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
//go doChannelServer(":54001")
|
|
||||||
channelServer := channelserver.NewServer(
|
channelServer := channelserver.NewServer(
|
||||||
&channelserver.Config{
|
&channelserver.Config{
|
||||||
DB: db,
|
DB: db,
|
||||||
|
|||||||
28
network/mhfpacket/mhfpacket.go
Normal file
28
network/mhfpacket/mhfpacket.go
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Parser is the interface that wraps the Parse method.
|
||||||
|
type Parser interface {
|
||||||
|
Parse(bf *byteframe.ByteFrame) error
|
||||||
|
}
|
||||||
|
|
||||||
|
// Builder is the interface that wraps the Build method.
|
||||||
|
type Builder interface {
|
||||||
|
Build(bf *byteframe.ByteFrame) error
|
||||||
|
}
|
||||||
|
|
||||||
|
// Opcoder is the interface that wraps the Opcode method.
|
||||||
|
type Opcoder interface {
|
||||||
|
Opcode() network.PacketID
|
||||||
|
}
|
||||||
|
|
||||||
|
// MHFPacket is the interface that groups the Parse, Build, and Opcode methods.
|
||||||
|
type MHFPacket interface {
|
||||||
|
Parser
|
||||||
|
Builder
|
||||||
|
Opcoder
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_ca_exchange_item.go
Normal file
24
network/mhfpacket/msg_ca_exchange_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgCaExchangeItem represents the MSG_CA_EXCHANGE_ITEM
|
||||||
|
type MsgCaExchangeItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgCaExchangeItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_CA_EXCHANGE_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgCaExchangeItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgCaExchangeItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_head.go
Normal file
24
network/mhfpacket/msg_head.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgHead represents the MSG_HEAD
|
||||||
|
type MsgHead struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgHead) Opcode() network.PacketID {
|
||||||
|
return network.MSG_HEAD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgHead) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgHead) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_accept_read_reward.go
Normal file
24
network/mhfpacket/msg_mhf_accept_read_reward.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcceptReadReward represents the MSG_MHF_ACCEPT_READ_REWARD
|
||||||
|
type MsgMhfAcceptReadReward struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcceptReadReward) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACCEPT_READ_REWARD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcceptReadReward) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcceptReadReward) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_cafe_item.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_cafe_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireCafeItem represents the MSG_MHF_ACQUIRE_CAFE_ITEM
|
||||||
|
type MsgMhfAcquireCafeItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireCafeItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_CAFE_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireCafeItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireCafeItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_dist_item.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_dist_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireDistItem represents the MSG_MHF_ACQUIRE_DIST_ITEM
|
||||||
|
type MsgMhfAcquireDistItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireDistItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_DIST_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireDistItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireDistItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_exchange_shop.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_exchange_shop.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireExchangeShop represents the MSG_MHF_ACQUIRE_EXCHANGE_SHOP
|
||||||
|
type MsgMhfAcquireExchangeShop struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireExchangeShop) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_EXCHANGE_SHOP
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireExchangeShop) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireExchangeShop) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_festa.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_festa.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireFesta represents the MSG_MHF_ACQUIRE_FESTA
|
||||||
|
type MsgMhfAcquireFesta struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireFesta) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_FESTA
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireFesta) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireFesta) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireFestaIntermediatePrize represents the MSG_MHF_ACQUIRE_FESTA_INTERMEDIATE_PRIZE
|
||||||
|
type MsgMhfAcquireFestaIntermediatePrize struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireFestaIntermediatePrize) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_FESTA_INTERMEDIATE_PRIZE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireFestaIntermediatePrize) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireFestaIntermediatePrize) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_festa_personal_prize.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_festa_personal_prize.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireFestaPersonalPrize represents the MSG_MHF_ACQUIRE_FESTA_PERSONAL_PRIZE
|
||||||
|
type MsgMhfAcquireFestaPersonalPrize struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireFestaPersonalPrize) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_FESTA_PERSONAL_PRIZE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireFestaPersonalPrize) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireFestaPersonalPrize) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_guild_adventure.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_guild_adventure.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireGuildAdventure represents the MSG_MHF_ACQUIRE_GUILD_ADVENTURE
|
||||||
|
type MsgMhfAcquireGuildAdventure struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireGuildAdventure) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_GUILD_ADVENTURE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireGuildAdventure) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireGuildAdventure) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_guild_tresure.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_guild_tresure.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireGuildTresure represents the MSG_MHF_ACQUIRE_GUILD_TRESURE
|
||||||
|
type MsgMhfAcquireGuildTresure struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireGuildTresure) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_GUILD_TRESURE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireGuildTresure) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireGuildTresure) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_guild_tresure_souvenir.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_guild_tresure_souvenir.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireGuildTresureSouvenir represents the MSG_MHF_ACQUIRE_GUILD_TRESURE_SOUVENIR
|
||||||
|
type MsgMhfAcquireGuildTresureSouvenir struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireGuildTresureSouvenir) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_GUILD_TRESURE_SOUVENIR
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireGuildTresureSouvenir) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireGuildTresureSouvenir) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_item.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireItem represents the MSG_MHF_ACQUIRE_ITEM
|
||||||
|
type MsgMhfAcquireItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_monthly_item.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_monthly_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireMonthlyItem represents the MSG_MHF_ACQUIRE_MONTHLY_ITEM
|
||||||
|
type MsgMhfAcquireMonthlyItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireMonthlyItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_MONTHLY_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireMonthlyItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireMonthlyItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_monthly_reward.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_monthly_reward.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireMonthlyReward represents the MSG_MHF_ACQUIRE_MONTHLY_REWARD
|
||||||
|
type MsgMhfAcquireMonthlyReward struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireMonthlyReward) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_MONTHLY_REWARD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireMonthlyReward) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireMonthlyReward) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_title.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_title.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireTitle represents the MSG_MHF_ACQUIRE_TITLE
|
||||||
|
type MsgMhfAcquireTitle struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireTitle) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_TITLE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireTitle) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireTitle) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_tournament.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_tournament.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireTournament represents the MSG_MHF_ACQUIRE_TOURNAMENT
|
||||||
|
type MsgMhfAcquireTournament struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireTournament) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_TOURNAMENT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireTournament) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireTournament) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_acquire_ud_item.go
Normal file
24
network/mhfpacket/msg_mhf_acquire_ud_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAcquireUdItem represents the MSG_MHF_ACQUIRE_UD_ITEM
|
||||||
|
type MsgMhfAcquireUdItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAcquireUdItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ACQUIRE_UD_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAcquireUdItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAcquireUdItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_add_achievement.go
Normal file
24
network/mhfpacket/msg_mhf_add_achievement.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddAchievement represents the MSG_MHF_ADD_ACHIEVEMENT
|
||||||
|
type MsgMhfAddAchievement struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddAchievement) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_ACHIEVEMENT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddAchievement) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddAchievement) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_add_guild_mission_count.go
Normal file
24
network/mhfpacket/msg_mhf_add_guild_mission_count.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddGuildMissionCount represents the MSG_MHF_ADD_GUILD_MISSION_COUNT
|
||||||
|
type MsgMhfAddGuildMissionCount struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddGuildMissionCount) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_GUILD_MISSION_COUNT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddGuildMissionCount) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddGuildMissionCount) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddGuildWeeklyBonusExceptionalUser represents the MSG_MHF_ADD_GUILD_WEEKLY_BONUS_EXCEPTIONAL_USER
|
||||||
|
type MsgMhfAddGuildWeeklyBonusExceptionalUser struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddGuildWeeklyBonusExceptionalUser) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_GUILD_WEEKLY_BONUS_EXCEPTIONAL_USER
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddGuildWeeklyBonusExceptionalUser) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddGuildWeeklyBonusExceptionalUser) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_add_kouryou_point.go
Normal file
24
network/mhfpacket/msg_mhf_add_kouryou_point.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddKouryouPoint represents the MSG_MHF_ADD_KOURYOU_POINT
|
||||||
|
type MsgMhfAddKouryouPoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddKouryouPoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_KOURYOU_POINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddKouryouPoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddKouryouPoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_add_reward_song_count.go
Normal file
24
network/mhfpacket/msg_mhf_add_reward_song_count.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddRewardSongCount represents the MSG_MHF_ADD_REWARD_SONG_COUNT
|
||||||
|
type MsgMhfAddRewardSongCount struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddRewardSongCount) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_REWARD_SONG_COUNT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddRewardSongCount) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddRewardSongCount) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_add_ud_point.go
Normal file
24
network/mhfpacket/msg_mhf_add_ud_point.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddUdPoint represents the MSG_MHF_ADD_UD_POINT
|
||||||
|
type MsgMhfAddUdPoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddUdPoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_UD_POINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddUdPoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddUdPoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_add_ud_tactics_point.go
Normal file
24
network/mhfpacket/msg_mhf_add_ud_tactics_point.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAddUdTacticsPoint represents the MSG_MHF_ADD_UD_TACTICS_POINT
|
||||||
|
type MsgMhfAddUdTacticsPoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAddUdTacticsPoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ADD_UD_TACTICS_POINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAddUdTacticsPoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAddUdTacticsPoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_announce.go
Normal file
24
network/mhfpacket/msg_mhf_announce.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAnnounce represents the MSG_MHF_ANNOUNCE
|
||||||
|
type MsgMhfAnnounce struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAnnounce) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ANNOUNCE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAnnounce) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAnnounce) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_answer_guild_scout.go
Normal file
24
network/mhfpacket/msg_mhf_answer_guild_scout.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfAnswerGuildScout represents the MSG_MHF_ANSWER_GUILD_SCOUT
|
||||||
|
type MsgMhfAnswerGuildScout struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfAnswerGuildScout) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ANSWER_GUILD_SCOUT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfAnswerGuildScout) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfAnswerGuildScout) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_apply_bbs_article.go
Normal file
24
network/mhfpacket/msg_mhf_apply_bbs_article.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfApplyBbsArticle represents the MSG_MHF_APPLY_BBS_ARTICLE
|
||||||
|
type MsgMhfApplyBbsArticle struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfApplyBbsArticle) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_APPLY_BBS_ARTICLE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfApplyBbsArticle) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfApplyBbsArticle) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_apply_campaign.go
Normal file
24
network/mhfpacket/msg_mhf_apply_campaign.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfApplyCampaign represents the MSG_MHF_APPLY_CAMPAIGN
|
||||||
|
type MsgMhfApplyCampaign struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfApplyCampaign) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_APPLY_CAMPAIGN
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfApplyCampaign) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfApplyCampaign) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_apply_dist_item.go
Normal file
24
network/mhfpacket/msg_mhf_apply_dist_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfApplyDistItem represents the MSG_MHF_APPLY_DIST_ITEM
|
||||||
|
type MsgMhfApplyDistItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfApplyDistItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_APPLY_DIST_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfApplyDistItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfApplyDistItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_arrange_guild_member.go
Normal file
24
network/mhfpacket/msg_mhf_arrange_guild_member.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfArrangeGuildMember represents the MSG_MHF_ARRANGE_GUILD_MEMBER
|
||||||
|
type MsgMhfArrangeGuildMember struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfArrangeGuildMember) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ARRANGE_GUILD_MEMBER
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfArrangeGuildMember) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfArrangeGuildMember) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_cancel_guild_mission_target.go
Normal file
24
network/mhfpacket/msg_mhf_cancel_guild_mission_target.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCancelGuildMissionTarget represents the MSG_MHF_CANCEL_GUILD_MISSION_TARGET
|
||||||
|
type MsgMhfCancelGuildMissionTarget struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCancelGuildMissionTarget) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CANCEL_GUILD_MISSION_TARGET
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCancelGuildMissionTarget) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCancelGuildMissionTarget) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_cancel_guild_scout.go
Normal file
24
network/mhfpacket/msg_mhf_cancel_guild_scout.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCancelGuildScout represents the MSG_MHF_CANCEL_GUILD_SCOUT
|
||||||
|
type MsgMhfCancelGuildScout struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCancelGuildScout) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CANCEL_GUILD_SCOUT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCancelGuildScout) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCancelGuildScout) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_caravan_my_rank.go
Normal file
24
network/mhfpacket/msg_mhf_caravan_my_rank.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCaravanMyRank represents the MSG_MHF_CARAVAN_MY_RANK
|
||||||
|
type MsgMhfCaravanMyRank struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCaravanMyRank) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CARAVAN_MY_RANK
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCaravanMyRank) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCaravanMyRank) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_caravan_my_score.go
Normal file
24
network/mhfpacket/msg_mhf_caravan_my_score.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCaravanMyScore represents the MSG_MHF_CARAVAN_MY_SCORE
|
||||||
|
type MsgMhfCaravanMyScore struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCaravanMyScore) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CARAVAN_MY_SCORE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCaravanMyScore) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCaravanMyScore) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_caravan_ranking.go
Normal file
24
network/mhfpacket/msg_mhf_caravan_ranking.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCaravanRanking represents the MSG_MHF_CARAVAN_RANKING
|
||||||
|
type MsgMhfCaravanRanking struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCaravanRanking) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CARAVAN_RANKING
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCaravanRanking) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCaravanRanking) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_charge_festa.go
Normal file
24
network/mhfpacket/msg_mhf_charge_festa.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfChargeFesta represents the MSG_MHF_CHARGE_FESTA
|
||||||
|
type MsgMhfChargeFesta struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfChargeFesta) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CHARGE_FESTA
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfChargeFesta) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfChargeFesta) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_charge_guild_adventure.go
Normal file
24
network/mhfpacket/msg_mhf_charge_guild_adventure.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfChargeGuildAdventure represents the MSG_MHF_CHARGE_GUILD_ADVENTURE
|
||||||
|
type MsgMhfChargeGuildAdventure struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfChargeGuildAdventure) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CHARGE_GUILD_ADVENTURE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfChargeGuildAdventure) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfChargeGuildAdventure) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_check_daily_cafepoint.go
Normal file
24
network/mhfpacket/msg_mhf_check_daily_cafepoint.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCheckDailyCafepoint represents the MSG_MHF_CHECK_DAILY_CAFEPOINT
|
||||||
|
type MsgMhfCheckDailyCafepoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCheckDailyCafepoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CHECK_DAILY_CAFEPOINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCheckDailyCafepoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCheckDailyCafepoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_check_monthly_item.go
Normal file
24
network/mhfpacket/msg_mhf_check_monthly_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCheckMonthlyItem represents the MSG_MHF_CHECK_MONTHLY_ITEM
|
||||||
|
type MsgMhfCheckMonthlyItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCheckMonthlyItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CHECK_MONTHLY_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCheckMonthlyItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCheckMonthlyItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_check_weekly_stamp.go
Normal file
24
network/mhfpacket/msg_mhf_check_weekly_stamp.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCheckWeeklyStamp represents the MSG_MHF_CHECK_WEEKLY_STAMP
|
||||||
|
type MsgMhfCheckWeeklyStamp struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCheckWeeklyStamp) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CHECK_WEEKLY_STAMP
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCheckWeeklyStamp) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCheckWeeklyStamp) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_contract_mercenary.go
Normal file
24
network/mhfpacket/msg_mhf_contract_mercenary.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfContractMercenary represents the MSG_MHF_CONTRACT_MERCENARY
|
||||||
|
type MsgMhfContractMercenary struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfContractMercenary) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CONTRACT_MERCENARY
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfContractMercenary) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfContractMercenary) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_create_guild.go
Normal file
24
network/mhfpacket/msg_mhf_create_guild.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCreateGuild represents the MSG_MHF_CREATE_GUILD
|
||||||
|
type MsgMhfCreateGuild struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCreateGuild) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CREATE_GUILD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCreateGuild) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCreateGuild) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_create_joint.go
Normal file
24
network/mhfpacket/msg_mhf_create_joint.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCreateJoint represents the MSG_MHF_CREATE_JOINT
|
||||||
|
type MsgMhfCreateJoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCreateJoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CREATE_JOINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCreateJoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCreateJoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_create_mercenary.go
Normal file
24
network/mhfpacket/msg_mhf_create_mercenary.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfCreateMercenary represents the MSG_MHF_CREATE_MERCENARY
|
||||||
|
type MsgMhfCreateMercenary struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfCreateMercenary) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_CREATE_MERCENARY
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfCreateMercenary) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfCreateMercenary) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_debug_post_value.go
Normal file
24
network/mhfpacket/msg_mhf_debug_post_value.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfDebugPostValue represents the MSG_MHF_DEBUG_POST_VALUE
|
||||||
|
type MsgMhfDebugPostValue struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfDebugPostValue) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_DEBUG_POST_VALUE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfDebugPostValue) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfDebugPostValue) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_displayed_achievement.go
Normal file
24
network/mhfpacket/msg_mhf_displayed_achievement.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfDisplayedAchievement represents the MSG_MHF_DISPLAYED_ACHIEVEMENT
|
||||||
|
type MsgMhfDisplayedAchievement struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfDisplayedAchievement) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_DISPLAYED_ACHIEVEMENT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfDisplayedAchievement) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfDisplayedAchievement) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enter_tournament_quest.go
Normal file
24
network/mhfpacket/msg_mhf_enter_tournament_quest.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnterTournamentQuest represents the MSG_MHF_ENTER_TOURNAMENT_QUEST
|
||||||
|
type MsgMhfEnterTournamentQuest struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnterTournamentQuest) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENTER_TOURNAMENT_QUEST
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnterTournamentQuest) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnterTournamentQuest) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_entry_festa.go
Normal file
24
network/mhfpacket/msg_mhf_entry_festa.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEntryFesta represents the MSG_MHF_ENTRY_FESTA
|
||||||
|
type MsgMhfEntryFesta struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEntryFesta) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENTRY_FESTA
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEntryFesta) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEntryFesta) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_entry_rookie_guild.go
Normal file
24
network/mhfpacket/msg_mhf_entry_rookie_guild.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEntryRookieGuild represents the MSG_MHF_ENTRY_ROOKIE_GUILD
|
||||||
|
type MsgMhfEntryRookieGuild struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEntryRookieGuild) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENTRY_ROOKIE_GUILD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEntryRookieGuild) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEntryRookieGuild) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_entry_tournament.go
Normal file
24
network/mhfpacket/msg_mhf_entry_tournament.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEntryTournament represents the MSG_MHF_ENTRY_TOURNAMENT
|
||||||
|
type MsgMhfEntryTournament struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEntryTournament) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENTRY_TOURNAMENT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEntryTournament) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEntryTournament) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_airoulist.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_airoulist.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateAiroulist represents the MSG_MHF_ENUMERATE_AIROULIST
|
||||||
|
type MsgMhfEnumerateAiroulist struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateAiroulist) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_AIROULIST
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateAiroulist) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateAiroulist) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_campaign.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_campaign.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateCampaign represents the MSG_MHF_ENUMERATE_CAMPAIGN
|
||||||
|
type MsgMhfEnumerateCampaign struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateCampaign) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_CAMPAIGN
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateCampaign) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateCampaign) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_dist_item.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_dist_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateDistItem represents the MSG_MHF_ENUMERATE_DIST_ITEM
|
||||||
|
type MsgMhfEnumerateDistItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateDistItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_DIST_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateDistItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateDistItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_event.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_event.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateEvent represents the MSG_MHF_ENUMERATE_EVENT
|
||||||
|
type MsgMhfEnumerateEvent struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateEvent) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_EVENT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateEvent) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateEvent) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateFestaIntermediatePrize represents the MSG_MHF_ENUMERATE_FESTA_INTERMEDIATE_PRIZE
|
||||||
|
type MsgMhfEnumerateFestaIntermediatePrize struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateFestaIntermediatePrize) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_FESTA_INTERMEDIATE_PRIZE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateFestaIntermediatePrize) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateFestaIntermediatePrize) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_festa_member.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_festa_member.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateFestaMember represents the MSG_MHF_ENUMERATE_FESTA_MEMBER
|
||||||
|
type MsgMhfEnumerateFestaMember struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateFestaMember) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_FESTA_MEMBER
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateFestaMember) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateFestaMember) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_festa_personal_prize.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_festa_personal_prize.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateFestaPersonalPrize represents the MSG_MHF_ENUMERATE_FESTA_PERSONAL_PRIZE
|
||||||
|
type MsgMhfEnumerateFestaPersonalPrize struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateFestaPersonalPrize) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_FESTA_PERSONAL_PRIZE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateFestaPersonalPrize) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateFestaPersonalPrize) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_guacot.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_guacot.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateGuacot represents the MSG_MHF_ENUMERATE_GUACOT
|
||||||
|
type MsgMhfEnumerateGuacot struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateGuacot) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_GUACOT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateGuacot) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateGuacot) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_guild.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_guild.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateGuild represents the MSG_MHF_ENUMERATE_GUILD
|
||||||
|
type MsgMhfEnumerateGuild struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateGuild) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_GUILD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateGuild) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateGuild) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_guild_item.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_guild_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateGuildItem represents the MSG_MHF_ENUMERATE_GUILD_ITEM
|
||||||
|
type MsgMhfEnumerateGuildItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateGuildItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_GUILD_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateGuildItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateGuildItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_guild_member.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_guild_member.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateGuildMember represents the MSG_MHF_ENUMERATE_GUILD_MEMBER
|
||||||
|
type MsgMhfEnumerateGuildMember struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateGuildMember) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_GUILD_MEMBER
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateGuildMember) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateGuildMember) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_guild_tresure.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_guild_tresure.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateGuildTresure represents the MSG_MHF_ENUMERATE_GUILD_TRESURE
|
||||||
|
type MsgMhfEnumerateGuildTresure struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateGuildTresure) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_GUILD_TRESURE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateGuildTresure) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateGuildTresure) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_house.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_house.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateHouse represents the MSG_MHF_ENUMERATE_HOUSE
|
||||||
|
type MsgMhfEnumerateHouse struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateHouse) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_HOUSE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateHouse) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateHouse) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_inv_guild.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_inv_guild.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateInvGuild represents the MSG_MHF_ENUMERATE_INV_GUILD
|
||||||
|
type MsgMhfEnumerateInvGuild struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateInvGuild) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_INV_GUILD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateInvGuild) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateInvGuild) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_item.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateItem represents the MSG_MHF_ENUMERATE_ITEM
|
||||||
|
type MsgMhfEnumerateItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_mercenary_log.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_mercenary_log.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateMercenaryLog represents the MSG_MHF_ENUMERATE_MERCENARY_LOG
|
||||||
|
type MsgMhfEnumerateMercenaryLog struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateMercenaryLog) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_MERCENARY_LOG
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateMercenaryLog) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateMercenaryLog) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_order.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_order.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateOrder represents the MSG_MHF_ENUMERATE_ORDER
|
||||||
|
type MsgMhfEnumerateOrder struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateOrder) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_ORDER
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateOrder) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateOrder) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_price.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_price.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumeratePrice represents the MSG_MHF_ENUMERATE_PRICE
|
||||||
|
type MsgMhfEnumeratePrice struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumeratePrice) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_PRICE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumeratePrice) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumeratePrice) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_quest.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_quest.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateQuest represents the MSG_MHF_ENUMERATE_QUEST
|
||||||
|
type MsgMhfEnumerateQuest struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateQuest) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_QUEST
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateQuest) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateQuest) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_ranking.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_ranking.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateRanking represents the MSG_MHF_ENUMERATE_RANKING
|
||||||
|
type MsgMhfEnumerateRanking struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateRanking) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_RANKING
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateRanking) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateRanking) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_rengoku_ranking.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_rengoku_ranking.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateRengokuRanking represents the MSG_MHF_ENUMERATE_RENGOKU_RANKING
|
||||||
|
type MsgMhfEnumerateRengokuRanking struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateRengokuRanking) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_RENGOKU_RANKING
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateRengokuRanking) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateRengokuRanking) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_shop.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_shop.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateShop represents the MSG_MHF_ENUMERATE_SHOP
|
||||||
|
type MsgMhfEnumerateShop struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateShop) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_SHOP
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateShop) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateShop) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_title.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_title.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateTitle represents the MSG_MHF_ENUMERATE_TITLE
|
||||||
|
type MsgMhfEnumerateTitle struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateTitle) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_TITLE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateTitle) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateTitle) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_union_item.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_union_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateUnionItem represents the MSG_MHF_ENUMERATE_UNION_ITEM
|
||||||
|
type MsgMhfEnumerateUnionItem struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateUnionItem) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_UNION_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateUnionItem) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateUnionItem) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_enumerate_warehouse.go
Normal file
24
network/mhfpacket/msg_mhf_enumerate_warehouse.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfEnumerateWarehouse represents the MSG_MHF_ENUMERATE_WAREHOUSE
|
||||||
|
type MsgMhfEnumerateWarehouse struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfEnumerateWarehouse) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_ENUMERATE_WAREHOUSE
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfEnumerateWarehouse) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfEnumerateWarehouse) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_exchange_fpoint_2_item.go
Normal file
24
network/mhfpacket/msg_mhf_exchange_fpoint_2_item.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfExchangeFpoint2Item represents the MSG_MHF_EXCHANGE_FPOINT_2_ITEM
|
||||||
|
type MsgMhfExchangeFpoint2Item struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfExchangeFpoint2Item) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_EXCHANGE_FPOINT_2_ITEM
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfExchangeFpoint2Item) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfExchangeFpoint2Item) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_exchange_item_2_fpoint.go
Normal file
24
network/mhfpacket/msg_mhf_exchange_item_2_fpoint.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfExchangeItem2Fpoint represents the MSG_MHF_EXCHANGE_ITEM_2_FPOINT
|
||||||
|
type MsgMhfExchangeItem2Fpoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfExchangeItem2Fpoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_EXCHANGE_ITEM_2_FPOINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfExchangeItem2Fpoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfExchangeItem2Fpoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_exchange_kouryou_point.go
Normal file
24
network/mhfpacket/msg_mhf_exchange_kouryou_point.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfExchangeKouryouPoint represents the MSG_MHF_EXCHANGE_KOURYOU_POINT
|
||||||
|
type MsgMhfExchangeKouryouPoint struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfExchangeKouryouPoint) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_EXCHANGE_KOURYOU_POINT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfExchangeKouryouPoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfExchangeKouryouPoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_exchange_weekly_stamp.go
Normal file
24
network/mhfpacket/msg_mhf_exchange_weekly_stamp.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfExchangeWeeklyStamp represents the MSG_MHF_EXCHANGE_WEEKLY_STAMP
|
||||||
|
type MsgMhfExchangeWeeklyStamp struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfExchangeWeeklyStamp) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_EXCHANGE_WEEKLY_STAMP
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfExchangeWeeklyStamp) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfExchangeWeeklyStamp) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_generate_ud_guild_map.go
Normal file
24
network/mhfpacket/msg_mhf_generate_ud_guild_map.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGenerateUdGuildMap represents the MSG_MHF_GENERATE_UD_GUILD_MAP
|
||||||
|
type MsgMhfGenerateUdGuildMap struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGenerateUdGuildMap) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GENERATE_UD_GUILD_MAP
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGenerateUdGuildMap) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGenerateUdGuildMap) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_achievement.go
Normal file
24
network/mhfpacket/msg_mhf_get_achievement.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetAchievement represents the MSG_MHF_GET_ACHIEVEMENT
|
||||||
|
type MsgMhfGetAchievement struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetAchievement) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_ACHIEVEMENT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetAchievement) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetAchievement) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_additional_beat_reward.go
Normal file
24
network/mhfpacket/msg_mhf_get_additional_beat_reward.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetAdditionalBeatReward represents the MSG_MHF_GET_ADDITIONAL_BEAT_REWARD
|
||||||
|
type MsgMhfGetAdditionalBeatReward struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetAdditionalBeatReward) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_ADDITIONAL_BEAT_REWARD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetAdditionalBeatReward) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetAdditionalBeatReward) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_bbs_sns_status.go
Normal file
24
network/mhfpacket/msg_mhf_get_bbs_sns_status.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBbsSnsStatus represents the MSG_MHF_GET_BBS_SNS_STATUS
|
||||||
|
type MsgMhfGetBbsSnsStatus struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBbsSnsStatus) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BBS_SNS_STATUS
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBbsSnsStatus) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBbsSnsStatus) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_bbs_user_status.go
Normal file
24
network/mhfpacket/msg_mhf_get_bbs_user_status.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBbsUserStatus represents the MSG_MHF_GET_BBS_USER_STATUS
|
||||||
|
type MsgMhfGetBbsUserStatus struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBbsUserStatus) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BBS_USER_STATUS
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBbsUserStatus) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBbsUserStatus) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_boost_right.go
Normal file
24
network/mhfpacket/msg_mhf_get_boost_right.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBoostRight represents the MSG_MHF_GET_BOOST_RIGHT
|
||||||
|
type MsgMhfGetBoostRight struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBoostRight) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BOOST_RIGHT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBoostRight) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBoostRight) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_boost_time.go
Normal file
24
network/mhfpacket/msg_mhf_get_boost_time.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBoostTime represents the MSG_MHF_GET_BOOST_TIME
|
||||||
|
type MsgMhfGetBoostTime struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBoostTime) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BOOST_TIME
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBoostTime) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBoostTime) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_boost_time_limit.go
Normal file
24
network/mhfpacket/msg_mhf_get_boost_time_limit.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBoostTimeLimit represents the MSG_MHF_GET_BOOST_TIME_LIMIT
|
||||||
|
type MsgMhfGetBoostTimeLimit struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBoostTimeLimit) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BOOST_TIME_LIMIT
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBoostTimeLimit) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBoostTimeLimit) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_box_gacha_info.go
Normal file
24
network/mhfpacket/msg_mhf_get_box_gacha_info.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBoxGachaInfo represents the MSG_MHF_GET_BOX_GACHA_INFO
|
||||||
|
type MsgMhfGetBoxGachaInfo struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBoxGachaInfo) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BOX_GACHA_INFO
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBoxGachaInfo) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBoxGachaInfo) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_break_seibatu_level_reward.go
Normal file
24
network/mhfpacket/msg_mhf_get_break_seibatu_level_reward.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetBreakSeibatuLevelReward represents the MSG_MHF_GET_BREAK_SEIBATU_LEVEL_REWARD
|
||||||
|
type MsgMhfGetBreakSeibatuLevelReward struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetBreakSeibatuLevelReward) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_BREAK_SEIBATU_LEVEL_REWARD
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetBreakSeibatuLevelReward) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetBreakSeibatuLevelReward) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_ca_achievement_hist.go
Normal file
24
network/mhfpacket/msg_mhf_get_ca_achievement_hist.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetCaAchievementHist represents the MSG_MHF_GET_CA_ACHIEVEMENT_HIST
|
||||||
|
type MsgMhfGetCaAchievementHist struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetCaAchievementHist) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_CA_ACHIEVEMENT_HIST
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetCaAchievementHist) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetCaAchievementHist) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_ca_unique_id.go
Normal file
24
network/mhfpacket/msg_mhf_get_ca_unique_id.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetCaUniqueId represents the MSG_MHF_GET_CA_UNIQUE_ID
|
||||||
|
type MsgMhfGetCaUniqueId struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetCaUniqueId) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_CA_UNIQUE_ID
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetCaUniqueId) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetCaUniqueId) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_cafe_duration.go
Normal file
24
network/mhfpacket/msg_mhf_get_cafe_duration.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetCafeDuration represents the MSG_MHF_GET_CAFE_DURATION
|
||||||
|
type MsgMhfGetCafeDuration struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetCafeDuration) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_CAFE_DURATION
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetCafeDuration) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetCafeDuration) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_cafe_duration_bonus_info.go
Normal file
24
network/mhfpacket/msg_mhf_get_cafe_duration_bonus_info.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetCafeDurationBonusInfo represents the MSG_MHF_GET_CAFE_DURATION_BONUS_INFO
|
||||||
|
type MsgMhfGetCafeDurationBonusInfo struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetCafeDurationBonusInfo) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_CAFE_DURATION_BONUS_INFO
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetCafeDurationBonusInfo) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetCafeDurationBonusInfo) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
24
network/mhfpacket/msg_mhf_get_cog_info.go
Normal file
24
network/mhfpacket/msg_mhf_get_cog_info.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package mhfpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/Andoryuuta/Erupe/network"
|
||||||
|
"github.com/Andoryuuta/byteframe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MsgMhfGetCogInfo represents the MSG_MHF_GET_COG_INFO
|
||||||
|
type MsgMhfGetCogInfo struct{}
|
||||||
|
|
||||||
|
// Opcode returns the ID associated with this packet type.
|
||||||
|
func (m *MsgMhfGetCogInfo) Opcode() network.PacketID {
|
||||||
|
return network.MSG_MHF_GET_COG_INFO
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse parses the packet from binary
|
||||||
|
func (m *MsgMhfGetCogInfo) Parse(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build builds a binary packet from the current data.
|
||||||
|
func (m *MsgMhfGetCogInfo) Build(bf *byteframe.ByteFrame) error {
|
||||||
|
panic("Not implemented")
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user