diff --git a/channelserver/handler_table.go b/channelserver/handler_table.go new file mode 100644 index 000000000..9d3de8482 --- /dev/null +++ b/channelserver/handler_table.go @@ -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 +} diff --git a/channelserver/handlers.go b/channelserver/handlers.go new file mode 100644 index 000000000..e19cb5812 --- /dev/null +++ b/channelserver/handlers.go @@ -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) {} diff --git a/channelserver/session.go b/channelserver/session.go index 65dff6c54..b258a7d82 100644 --- a/channelserver/session.go +++ b/channelserver/session.go @@ -3,11 +3,11 @@ package channelserver import ( "encoding/hex" "fmt" - "io/ioutil" "net" "sync" "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/Erupe/network/mhfpacket" "github.com/Andoryuuta/byteframe" ) @@ -44,12 +44,44 @@ func (s *Session) Start() { 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 getPaperDataCount int @@ -259,3 +291,4 @@ func handlePacket(cc *network.CryptConn, pkt []byte) { handlePacket(cc, remainingData) } } +*/ diff --git a/main.go b/main.go index 315714413..5332a0b87 100644 --- a/main.go +++ b/main.go @@ -6,6 +6,7 @@ import ( "time" "github.com/Andoryuuta/Erupe/channelserver" + _ "github.com/Andoryuuta/Erupe/network/mhfpacket" "github.com/Andoryuuta/Erupe/signserver" _ "github.com/lib/pq" ) @@ -37,9 +38,11 @@ func main() { DB: db, ListenAddr: ":53312", }) - go signServer.Listen() + err = signServer.Start() + if err != nil { + panic(err) + } - //go doChannelServer(":54001") channelServer := channelserver.NewServer( &channelserver.Config{ DB: db, diff --git a/network/mhfpacket/mhfpacket.go b/network/mhfpacket/mhfpacket.go new file mode 100644 index 000000000..686431859 --- /dev/null +++ b/network/mhfpacket/mhfpacket.go @@ -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 +} diff --git a/network/mhfpacket/msg_ca_exchange_item.go b/network/mhfpacket/msg_ca_exchange_item.go new file mode 100644 index 000000000..988792595 --- /dev/null +++ b/network/mhfpacket/msg_ca_exchange_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_head.go b/network/mhfpacket/msg_head.go new file mode 100644 index 000000000..de91e4412 --- /dev/null +++ b/network/mhfpacket/msg_head.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_accept_read_reward.go b/network/mhfpacket/msg_mhf_accept_read_reward.go new file mode 100644 index 000000000..9d053ccea --- /dev/null +++ b/network/mhfpacket/msg_mhf_accept_read_reward.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_cafe_item.go b/network/mhfpacket/msg_mhf_acquire_cafe_item.go new file mode 100644 index 000000000..3087e1742 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_cafe_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_dist_item.go b/network/mhfpacket/msg_mhf_acquire_dist_item.go new file mode 100644 index 000000000..62c795703 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_dist_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_exchange_shop.go b/network/mhfpacket/msg_mhf_acquire_exchange_shop.go new file mode 100644 index 000000000..b998206b7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_exchange_shop.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_festa.go b/network/mhfpacket/msg_mhf_acquire_festa.go new file mode 100644 index 000000000..68a84d58d --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_festa.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_festa_intermediate_prize.go b/network/mhfpacket/msg_mhf_acquire_festa_intermediate_prize.go new file mode 100644 index 000000000..0ffabef8b --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_festa_intermediate_prize.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_festa_personal_prize.go b/network/mhfpacket/msg_mhf_acquire_festa_personal_prize.go new file mode 100644 index 000000000..ad78477ea --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_festa_personal_prize.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_guild_adventure.go b/network/mhfpacket/msg_mhf_acquire_guild_adventure.go new file mode 100644 index 000000000..25c84f036 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_guild_adventure.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_guild_tresure.go b/network/mhfpacket/msg_mhf_acquire_guild_tresure.go new file mode 100644 index 000000000..f1a9a5553 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_guild_tresure.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_guild_tresure_souvenir.go b/network/mhfpacket/msg_mhf_acquire_guild_tresure_souvenir.go new file mode 100644 index 000000000..46231ab01 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_guild_tresure_souvenir.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_item.go b/network/mhfpacket/msg_mhf_acquire_item.go new file mode 100644 index 000000000..8df14ca46 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_monthly_item.go b/network/mhfpacket/msg_mhf_acquire_monthly_item.go new file mode 100644 index 000000000..16c47a73c --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_monthly_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_monthly_reward.go b/network/mhfpacket/msg_mhf_acquire_monthly_reward.go new file mode 100644 index 000000000..b99a47d8b --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_monthly_reward.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_title.go b/network/mhfpacket/msg_mhf_acquire_title.go new file mode 100644 index 000000000..74c3a4152 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_title.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_tournament.go b/network/mhfpacket/msg_mhf_acquire_tournament.go new file mode 100644 index 000000000..2788539f1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_tournament.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_acquire_ud_item.go b/network/mhfpacket/msg_mhf_acquire_ud_item.go new file mode 100644 index 000000000..8f8a84b74 --- /dev/null +++ b/network/mhfpacket/msg_mhf_acquire_ud_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_achievement.go b/network/mhfpacket/msg_mhf_add_achievement.go new file mode 100644 index 000000000..4d94e0ce2 --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_achievement.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_guild_mission_count.go b/network/mhfpacket/msg_mhf_add_guild_mission_count.go new file mode 100644 index 000000000..c1dcf00e3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_guild_mission_count.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_guild_weekly_bonus_exceptional_user.go b/network/mhfpacket/msg_mhf_add_guild_weekly_bonus_exceptional_user.go new file mode 100644 index 000000000..f9c5dbaad --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_guild_weekly_bonus_exceptional_user.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_kouryou_point.go b/network/mhfpacket/msg_mhf_add_kouryou_point.go new file mode 100644 index 000000000..1c4669dde --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_kouryou_point.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_reward_song_count.go b/network/mhfpacket/msg_mhf_add_reward_song_count.go new file mode 100644 index 000000000..6bc1337dc --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_reward_song_count.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_ud_point.go b/network/mhfpacket/msg_mhf_add_ud_point.go new file mode 100644 index 000000000..5abe0ee07 --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_ud_point.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_add_ud_tactics_point.go b/network/mhfpacket/msg_mhf_add_ud_tactics_point.go new file mode 100644 index 000000000..096d4d3a4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_add_ud_tactics_point.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_announce.go b/network/mhfpacket/msg_mhf_announce.go new file mode 100644 index 000000000..55c5d1908 --- /dev/null +++ b/network/mhfpacket/msg_mhf_announce.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_answer_guild_scout.go b/network/mhfpacket/msg_mhf_answer_guild_scout.go new file mode 100644 index 000000000..aaf25f7f9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_answer_guild_scout.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_apply_bbs_article.go b/network/mhfpacket/msg_mhf_apply_bbs_article.go new file mode 100644 index 000000000..d92414ea4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_apply_bbs_article.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_apply_campaign.go b/network/mhfpacket/msg_mhf_apply_campaign.go new file mode 100644 index 000000000..f20b43df0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_apply_campaign.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_apply_dist_item.go b/network/mhfpacket/msg_mhf_apply_dist_item.go new file mode 100644 index 000000000..76723cdc5 --- /dev/null +++ b/network/mhfpacket/msg_mhf_apply_dist_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_arrange_guild_member.go b/network/mhfpacket/msg_mhf_arrange_guild_member.go new file mode 100644 index 000000000..2930f916c --- /dev/null +++ b/network/mhfpacket/msg_mhf_arrange_guild_member.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_cancel_guild_mission_target.go b/network/mhfpacket/msg_mhf_cancel_guild_mission_target.go new file mode 100644 index 000000000..8ec8d3383 --- /dev/null +++ b/network/mhfpacket/msg_mhf_cancel_guild_mission_target.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_cancel_guild_scout.go b/network/mhfpacket/msg_mhf_cancel_guild_scout.go new file mode 100644 index 000000000..ee1e34f6e --- /dev/null +++ b/network/mhfpacket/msg_mhf_cancel_guild_scout.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_caravan_my_rank.go b/network/mhfpacket/msg_mhf_caravan_my_rank.go new file mode 100644 index 000000000..a005d1414 --- /dev/null +++ b/network/mhfpacket/msg_mhf_caravan_my_rank.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_caravan_my_score.go b/network/mhfpacket/msg_mhf_caravan_my_score.go new file mode 100644 index 000000000..7693a01da --- /dev/null +++ b/network/mhfpacket/msg_mhf_caravan_my_score.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_caravan_ranking.go b/network/mhfpacket/msg_mhf_caravan_ranking.go new file mode 100644 index 000000000..186fe42a7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_caravan_ranking.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_charge_festa.go b/network/mhfpacket/msg_mhf_charge_festa.go new file mode 100644 index 000000000..48c6d069e --- /dev/null +++ b/network/mhfpacket/msg_mhf_charge_festa.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_charge_guild_adventure.go b/network/mhfpacket/msg_mhf_charge_guild_adventure.go new file mode 100644 index 000000000..4666896be --- /dev/null +++ b/network/mhfpacket/msg_mhf_charge_guild_adventure.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_check_daily_cafepoint.go b/network/mhfpacket/msg_mhf_check_daily_cafepoint.go new file mode 100644 index 000000000..95d5bb273 --- /dev/null +++ b/network/mhfpacket/msg_mhf_check_daily_cafepoint.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_check_monthly_item.go b/network/mhfpacket/msg_mhf_check_monthly_item.go new file mode 100644 index 000000000..348a9de37 --- /dev/null +++ b/network/mhfpacket/msg_mhf_check_monthly_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_check_weekly_stamp.go b/network/mhfpacket/msg_mhf_check_weekly_stamp.go new file mode 100644 index 000000000..d5f725a87 --- /dev/null +++ b/network/mhfpacket/msg_mhf_check_weekly_stamp.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_contract_mercenary.go b/network/mhfpacket/msg_mhf_contract_mercenary.go new file mode 100644 index 000000000..9344459be --- /dev/null +++ b/network/mhfpacket/msg_mhf_contract_mercenary.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_create_guild.go b/network/mhfpacket/msg_mhf_create_guild.go new file mode 100644 index 000000000..3f6508d86 --- /dev/null +++ b/network/mhfpacket/msg_mhf_create_guild.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_create_joint.go b/network/mhfpacket/msg_mhf_create_joint.go new file mode 100644 index 000000000..f2379303f --- /dev/null +++ b/network/mhfpacket/msg_mhf_create_joint.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_create_mercenary.go b/network/mhfpacket/msg_mhf_create_mercenary.go new file mode 100644 index 000000000..49680c7b2 --- /dev/null +++ b/network/mhfpacket/msg_mhf_create_mercenary.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_debug_post_value.go b/network/mhfpacket/msg_mhf_debug_post_value.go new file mode 100644 index 000000000..2146e1c6d --- /dev/null +++ b/network/mhfpacket/msg_mhf_debug_post_value.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_displayed_achievement.go b/network/mhfpacket/msg_mhf_displayed_achievement.go new file mode 100644 index 000000000..4ccad6e4f --- /dev/null +++ b/network/mhfpacket/msg_mhf_displayed_achievement.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enter_tournament_quest.go b/network/mhfpacket/msg_mhf_enter_tournament_quest.go new file mode 100644 index 000000000..9208c1808 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enter_tournament_quest.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_entry_festa.go b/network/mhfpacket/msg_mhf_entry_festa.go new file mode 100644 index 000000000..5307d6628 --- /dev/null +++ b/network/mhfpacket/msg_mhf_entry_festa.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_entry_rookie_guild.go b/network/mhfpacket/msg_mhf_entry_rookie_guild.go new file mode 100644 index 000000000..7a5fcebcf --- /dev/null +++ b/network/mhfpacket/msg_mhf_entry_rookie_guild.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_entry_tournament.go b/network/mhfpacket/msg_mhf_entry_tournament.go new file mode 100644 index 000000000..fd613596d --- /dev/null +++ b/network/mhfpacket/msg_mhf_entry_tournament.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_airoulist.go b/network/mhfpacket/msg_mhf_enumerate_airoulist.go new file mode 100644 index 000000000..6eb316888 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_airoulist.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_campaign.go b/network/mhfpacket/msg_mhf_enumerate_campaign.go new file mode 100644 index 000000000..8eb3354d1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_campaign.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_dist_item.go b/network/mhfpacket/msg_mhf_enumerate_dist_item.go new file mode 100644 index 000000000..24ea8fc82 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_dist_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_event.go b/network/mhfpacket/msg_mhf_enumerate_event.go new file mode 100644 index 000000000..8b8db9684 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_event.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_festa_intermediate_prize.go b/network/mhfpacket/msg_mhf_enumerate_festa_intermediate_prize.go new file mode 100644 index 000000000..dad4cc22f --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_festa_intermediate_prize.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_festa_member.go b/network/mhfpacket/msg_mhf_enumerate_festa_member.go new file mode 100644 index 000000000..ca1f399ba --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_festa_member.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_festa_personal_prize.go b/network/mhfpacket/msg_mhf_enumerate_festa_personal_prize.go new file mode 100644 index 000000000..fab417f07 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_festa_personal_prize.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_guacot.go b/network/mhfpacket/msg_mhf_enumerate_guacot.go new file mode 100644 index 000000000..2afa04fe4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_guacot.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_guild.go b/network/mhfpacket/msg_mhf_enumerate_guild.go new file mode 100644 index 000000000..8b08bf1f7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_guild.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_guild_item.go b/network/mhfpacket/msg_mhf_enumerate_guild_item.go new file mode 100644 index 000000000..372219c43 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_guild_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_guild_member.go b/network/mhfpacket/msg_mhf_enumerate_guild_member.go new file mode 100644 index 000000000..f30f24319 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_guild_member.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_guild_tresure.go b/network/mhfpacket/msg_mhf_enumerate_guild_tresure.go new file mode 100644 index 000000000..0d26dd822 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_guild_tresure.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_house.go b/network/mhfpacket/msg_mhf_enumerate_house.go new file mode 100644 index 000000000..99f829e12 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_house.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_inv_guild.go b/network/mhfpacket/msg_mhf_enumerate_inv_guild.go new file mode 100644 index 000000000..eb041fbf9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_inv_guild.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_item.go b/network/mhfpacket/msg_mhf_enumerate_item.go new file mode 100644 index 000000000..7697f80f1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_mercenary_log.go b/network/mhfpacket/msg_mhf_enumerate_mercenary_log.go new file mode 100644 index 000000000..9a74d6f37 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_mercenary_log.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_order.go b/network/mhfpacket/msg_mhf_enumerate_order.go new file mode 100644 index 000000000..5c3dc0a93 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_order.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_price.go b/network/mhfpacket/msg_mhf_enumerate_price.go new file mode 100644 index 000000000..ade7862c8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_price.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_quest.go b/network/mhfpacket/msg_mhf_enumerate_quest.go new file mode 100644 index 000000000..177f1bbd1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_quest.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_ranking.go b/network/mhfpacket/msg_mhf_enumerate_ranking.go new file mode 100644 index 000000000..0e62696dc --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_ranking.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_rengoku_ranking.go b/network/mhfpacket/msg_mhf_enumerate_rengoku_ranking.go new file mode 100644 index 000000000..03de8a9dc --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_rengoku_ranking.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_shop.go b/network/mhfpacket/msg_mhf_enumerate_shop.go new file mode 100644 index 000000000..938393c44 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_shop.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_title.go b/network/mhfpacket/msg_mhf_enumerate_title.go new file mode 100644 index 000000000..e6020a36b --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_title.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_union_item.go b/network/mhfpacket/msg_mhf_enumerate_union_item.go new file mode 100644 index 000000000..8db22ab02 --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_union_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_enumerate_warehouse.go b/network/mhfpacket/msg_mhf_enumerate_warehouse.go new file mode 100644 index 000000000..9288ed9da --- /dev/null +++ b/network/mhfpacket/msg_mhf_enumerate_warehouse.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_exchange_fpoint_2_item.go b/network/mhfpacket/msg_mhf_exchange_fpoint_2_item.go new file mode 100644 index 000000000..06f737357 --- /dev/null +++ b/network/mhfpacket/msg_mhf_exchange_fpoint_2_item.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_exchange_item_2_fpoint.go b/network/mhfpacket/msg_mhf_exchange_item_2_fpoint.go new file mode 100644 index 000000000..587c409ee --- /dev/null +++ b/network/mhfpacket/msg_mhf_exchange_item_2_fpoint.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_exchange_kouryou_point.go b/network/mhfpacket/msg_mhf_exchange_kouryou_point.go new file mode 100644 index 000000000..ffc9294b3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_exchange_kouryou_point.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_exchange_weekly_stamp.go b/network/mhfpacket/msg_mhf_exchange_weekly_stamp.go new file mode 100644 index 000000000..785565b17 --- /dev/null +++ b/network/mhfpacket/msg_mhf_exchange_weekly_stamp.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_generate_ud_guild_map.go b/network/mhfpacket/msg_mhf_generate_ud_guild_map.go new file mode 100644 index 000000000..3bd9ef39c --- /dev/null +++ b/network/mhfpacket/msg_mhf_generate_ud_guild_map.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_achievement.go b/network/mhfpacket/msg_mhf_get_achievement.go new file mode 100644 index 000000000..8d46d16e6 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_achievement.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_additional_beat_reward.go b/network/mhfpacket/msg_mhf_get_additional_beat_reward.go new file mode 100644 index 000000000..b25a96117 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_additional_beat_reward.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_bbs_sns_status.go b/network/mhfpacket/msg_mhf_get_bbs_sns_status.go new file mode 100644 index 000000000..b4a67f1d0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_bbs_sns_status.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_bbs_user_status.go b/network/mhfpacket/msg_mhf_get_bbs_user_status.go new file mode 100644 index 000000000..9cc2470c8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_bbs_user_status.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_boost_right.go b/network/mhfpacket/msg_mhf_get_boost_right.go new file mode 100644 index 000000000..d520aab3d --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_boost_right.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_boost_time.go b/network/mhfpacket/msg_mhf_get_boost_time.go new file mode 100644 index 000000000..e0bea7a18 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_boost_time.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_boost_time_limit.go b/network/mhfpacket/msg_mhf_get_boost_time_limit.go new file mode 100644 index 000000000..d2ad3a758 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_boost_time_limit.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_box_gacha_info.go b/network/mhfpacket/msg_mhf_get_box_gacha_info.go new file mode 100644 index 000000000..6e4cf3f09 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_box_gacha_info.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_break_seibatu_level_reward.go b/network/mhfpacket/msg_mhf_get_break_seibatu_level_reward.go new file mode 100644 index 000000000..7aaf293e7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_break_seibatu_level_reward.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ca_achievement_hist.go b/network/mhfpacket/msg_mhf_get_ca_achievement_hist.go new file mode 100644 index 000000000..323150691 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ca_achievement_hist.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ca_unique_id.go b/network/mhfpacket/msg_mhf_get_ca_unique_id.go new file mode 100644 index 000000000..7305bf0a6 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ca_unique_id.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_cafe_duration.go b/network/mhfpacket/msg_mhf_get_cafe_duration.go new file mode 100644 index 000000000..12c88b1ea --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_cafe_duration.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_cafe_duration_bonus_info.go b/network/mhfpacket/msg_mhf_get_cafe_duration_bonus_info.go new file mode 100644 index 000000000..d735cf2c1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_cafe_duration_bonus_info.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_cog_info.go b/network/mhfpacket/msg_mhf_get_cog_info.go new file mode 100644 index 000000000..cbaebc40d --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_cog_info.go @@ -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") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_daily_mission_master.go b/network/mhfpacket/msg_mhf_get_daily_mission_master.go new file mode 100644 index 000000000..b23ed77f7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_daily_mission_master.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetDailyMissionMaster represents the MSG_MHF_GET_DAILY_MISSION_MASTER +type MsgMhfGetDailyMissionMaster struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetDailyMissionMaster) Opcode() network.PacketID { + return network.MSG_MHF_GET_DAILY_MISSION_MASTER +} + +// Parse parses the packet from binary +func (m *MsgMhfGetDailyMissionMaster) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetDailyMissionMaster) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_daily_mission_personal.go b/network/mhfpacket/msg_mhf_get_daily_mission_personal.go new file mode 100644 index 000000000..ce5236478 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_daily_mission_personal.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetDailyMissionPersonal represents the MSG_MHF_GET_DAILY_MISSION_PERSONAL +type MsgMhfGetDailyMissionPersonal struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetDailyMissionPersonal) Opcode() network.PacketID { + return network.MSG_MHF_GET_DAILY_MISSION_PERSONAL +} + +// Parse parses the packet from binary +func (m *MsgMhfGetDailyMissionPersonal) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetDailyMissionPersonal) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_dist_description.go b/network/mhfpacket/msg_mhf_get_dist_description.go new file mode 100644 index 000000000..0ea14bca8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_dist_description.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetDistDescription represents the MSG_MHF_GET_DIST_DESCRIPTION +type MsgMhfGetDistDescription struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetDistDescription) Opcode() network.PacketID { + return network.MSG_MHF_GET_DIST_DESCRIPTION +} + +// Parse parses the packet from binary +func (m *MsgMhfGetDistDescription) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetDistDescription) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_earth_status.go b/network/mhfpacket/msg_mhf_get_earth_status.go new file mode 100644 index 000000000..f1e699d25 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_earth_status.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetEarthStatus represents the MSG_MHF_GET_EARTH_STATUS +type MsgMhfGetEarthStatus struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetEarthStatus) Opcode() network.PacketID { + return network.MSG_MHF_GET_EARTH_STATUS +} + +// Parse parses the packet from binary +func (m *MsgMhfGetEarthStatus) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetEarthStatus) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_earth_value.go b/network/mhfpacket/msg_mhf_get_earth_value.go new file mode 100644 index 000000000..da435d462 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_earth_value.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetEarthValue represents the MSG_MHF_GET_EARTH_VALUE +type MsgMhfGetEarthValue struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetEarthValue) Opcode() network.PacketID { + return network.MSG_MHF_GET_EARTH_VALUE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetEarthValue) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetEarthValue) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_enhanced_minidata.go b/network/mhfpacket/msg_mhf_get_enhanced_minidata.go new file mode 100644 index 000000000..cf2d56592 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_enhanced_minidata.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetEnhancedMinidata represents the MSG_MHF_GET_ENHANCED_MINIDATA +type MsgMhfGetEnhancedMinidata struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetEnhancedMinidata) Opcode() network.PacketID { + return network.MSG_MHF_GET_ENHANCED_MINIDATA +} + +// Parse parses the packet from binary +func (m *MsgMhfGetEnhancedMinidata) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetEnhancedMinidata) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_equip_skin_hist.go b/network/mhfpacket/msg_mhf_get_equip_skin_hist.go new file mode 100644 index 000000000..fd761e3a9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_equip_skin_hist.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetEquipSkinHist represents the MSG_MHF_GET_EQUIP_SKIN_HIST +type MsgMhfGetEquipSkinHist struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetEquipSkinHist) Opcode() network.PacketID { + return network.MSG_MHF_GET_EQUIP_SKIN_HIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetEquipSkinHist) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetEquipSkinHist) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_etc_points.go b/network/mhfpacket/msg_mhf_get_etc_points.go new file mode 100644 index 000000000..eab24144a --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_etc_points.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetEtcPoints represents the MSG_MHF_GET_ETC_POINTS +type MsgMhfGetEtcPoints struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetEtcPoints) Opcode() network.PacketID { + return network.MSG_MHF_GET_ETC_POINTS +} + +// Parse parses the packet from binary +func (m *MsgMhfGetEtcPoints) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetEtcPoints) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_extra_info.go b/network/mhfpacket/msg_mhf_get_extra_info.go new file mode 100644 index 000000000..96ddac700 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_extra_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetExtraInfo represents the MSG_MHF_GET_EXTRA_INFO +type MsgMhfGetExtraInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetExtraInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_EXTRA_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetExtraInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetExtraInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_fixed_seibatu_ranking_table.go b/network/mhfpacket/msg_mhf_get_fixed_seibatu_ranking_table.go new file mode 100644 index 000000000..b5e3961b1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_fixed_seibatu_ranking_table.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetFixedSeibatuRankingTable represents the MSG_MHF_GET_FIXED_SEIBATU_RANKING_TABLE +type MsgMhfGetFixedSeibatuRankingTable struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetFixedSeibatuRankingTable) Opcode() network.PacketID { + return network.MSG_MHF_GET_FIXED_SEIBATU_RANKING_TABLE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetFixedSeibatuRankingTable) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetFixedSeibatuRankingTable) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_fpoint_exchange_list.go b/network/mhfpacket/msg_mhf_get_fpoint_exchange_list.go new file mode 100644 index 000000000..bdecacf70 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_fpoint_exchange_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetFpointExchangeList represents the MSG_MHF_GET_FPOINT_EXCHANGE_LIST +type MsgMhfGetFpointExchangeList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetFpointExchangeList) Opcode() network.PacketID { + return network.MSG_MHF_GET_FPOINT_EXCHANGE_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetFpointExchangeList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetFpointExchangeList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_gacha_play_history.go b/network/mhfpacket/msg_mhf_get_gacha_play_history.go new file mode 100644 index 000000000..b2dabf3c2 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_gacha_play_history.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGachaPlayHistory represents the MSG_MHF_GET_GACHA_PLAY_HISTORY +type MsgMhfGetGachaPlayHistory struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGachaPlayHistory) Opcode() network.PacketID { + return network.MSG_MHF_GET_GACHA_PLAY_HISTORY +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGachaPlayHistory) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGachaPlayHistory) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_gacha_point.go b/network/mhfpacket/msg_mhf_get_gacha_point.go new file mode 100644 index 000000000..1bbd48276 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_gacha_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGachaPoint represents the MSG_MHF_GET_GACHA_POINT +type MsgMhfGetGachaPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGachaPoint) Opcode() network.PacketID { + return network.MSG_MHF_GET_GACHA_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGachaPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGachaPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_gem_info.go b/network/mhfpacket/msg_mhf_get_gem_info.go new file mode 100644 index 000000000..207456260 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_gem_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGemInfo represents the MSG_MHF_GET_GEM_INFO +type MsgMhfGetGemInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGemInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_GEM_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGemInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGemInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_manage_right.go b/network/mhfpacket/msg_mhf_get_guild_manage_right.go new file mode 100644 index 000000000..5ff2bd42b --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_manage_right.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildManageRight represents the MSG_MHF_GET_GUILD_MANAGE_RIGHT +type MsgMhfGetGuildManageRight struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildManageRight) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_MANAGE_RIGHT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildManageRight) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildManageRight) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_mission_list.go b/network/mhfpacket/msg_mhf_get_guild_mission_list.go new file mode 100644 index 000000000..f4852619a --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_mission_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildMissionList represents the MSG_MHF_GET_GUILD_MISSION_LIST +type MsgMhfGetGuildMissionList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildMissionList) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_MISSION_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildMissionList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildMissionList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_mission_record.go b/network/mhfpacket/msg_mhf_get_guild_mission_record.go new file mode 100644 index 000000000..7845d79a7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_mission_record.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildMissionRecord represents the MSG_MHF_GET_GUILD_MISSION_RECORD +type MsgMhfGetGuildMissionRecord struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildMissionRecord) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_MISSION_RECORD +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildMissionRecord) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildMissionRecord) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_scout_list.go b/network/mhfpacket/msg_mhf_get_guild_scout_list.go new file mode 100644 index 000000000..a490552a0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_scout_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildScoutList represents the MSG_MHF_GET_GUILD_SCOUT_LIST +type MsgMhfGetGuildScoutList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildScoutList) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_SCOUT_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildScoutList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildScoutList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_target_member_num.go b/network/mhfpacket/msg_mhf_get_guild_target_member_num.go new file mode 100644 index 000000000..5014ff265 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_target_member_num.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildTargetMemberNum represents the MSG_MHF_GET_GUILD_TARGET_MEMBER_NUM +type MsgMhfGetGuildTargetMemberNum struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildTargetMemberNum) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_TARGET_MEMBER_NUM +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildTargetMemberNum) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildTargetMemberNum) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_tresure_souvenir.go b/network/mhfpacket/msg_mhf_get_guild_tresure_souvenir.go new file mode 100644 index 000000000..e175b6c41 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_tresure_souvenir.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildTresureSouvenir represents the MSG_MHF_GET_GUILD_TRESURE_SOUVENIR +type MsgMhfGetGuildTresureSouvenir struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildTresureSouvenir) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_TRESURE_SOUVENIR +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildTresureSouvenir) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildTresureSouvenir) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_weekly_bonus_active_count.go b/network/mhfpacket/msg_mhf_get_guild_weekly_bonus_active_count.go new file mode 100644 index 000000000..d14ecb68b --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_weekly_bonus_active_count.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildWeeklyBonusActiveCount represents the MSG_MHF_GET_GUILD_WEEKLY_BONUS_ACTIVE_COUNT +type MsgMhfGetGuildWeeklyBonusActiveCount struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildWeeklyBonusActiveCount) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_WEEKLY_BONUS_ACTIVE_COUNT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildWeeklyBonusActiveCount) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildWeeklyBonusActiveCount) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_guild_weekly_bonus_master.go b/network/mhfpacket/msg_mhf_get_guild_weekly_bonus_master.go new file mode 100644 index 000000000..11920d74b --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_guild_weekly_bonus_master.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetGuildWeeklyBonusMaster represents the MSG_MHF_GET_GUILD_WEEKLY_BONUS_MASTER +type MsgMhfGetGuildWeeklyBonusMaster struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetGuildWeeklyBonusMaster) Opcode() network.PacketID { + return network.MSG_MHF_GET_GUILD_WEEKLY_BONUS_MASTER +} + +// Parse parses the packet from binary +func (m *MsgMhfGetGuildWeeklyBonusMaster) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetGuildWeeklyBonusMaster) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_keep_login_boost_status.go b/network/mhfpacket/msg_mhf_get_keep_login_boost_status.go new file mode 100644 index 000000000..9ca1ed5a1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_keep_login_boost_status.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetKeepLoginBoostStatus represents the MSG_MHF_GET_KEEP_LOGIN_BOOST_STATUS +type MsgMhfGetKeepLoginBoostStatus struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetKeepLoginBoostStatus) Opcode() network.PacketID { + return network.MSG_MHF_GET_KEEP_LOGIN_BOOST_STATUS +} + +// Parse parses the packet from binary +func (m *MsgMhfGetKeepLoginBoostStatus) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetKeepLoginBoostStatus) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_kiju_info.go b/network/mhfpacket/msg_mhf_get_kiju_info.go new file mode 100644 index 000000000..74024f51c --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_kiju_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetKijuInfo represents the MSG_MHF_GET_KIJU_INFO +type MsgMhfGetKijuInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetKijuInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_KIJU_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetKijuInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetKijuInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_kouryou_point.go b/network/mhfpacket/msg_mhf_get_kouryou_point.go new file mode 100644 index 000000000..434c07876 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_kouryou_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetKouryouPoint represents the MSG_MHF_GET_KOURYOU_POINT +type MsgMhfGetKouryouPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetKouryouPoint) Opcode() network.PacketID { + return network.MSG_MHF_GET_KOURYOU_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetKouryouPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetKouryouPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_lobby_crowd.go b/network/mhfpacket/msg_mhf_get_lobby_crowd.go new file mode 100644 index 000000000..0fd585ad1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_lobby_crowd.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetLobbyCrowd represents the MSG_MHF_GET_LOBBY_CROWD +type MsgMhfGetLobbyCrowd struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetLobbyCrowd) Opcode() network.PacketID { + return network.MSG_MHF_GET_LOBBY_CROWD +} + +// Parse parses the packet from binary +func (m *MsgMhfGetLobbyCrowd) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetLobbyCrowd) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_myhouse_info.go b/network/mhfpacket/msg_mhf_get_myhouse_info.go new file mode 100644 index 000000000..632a96d10 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_myhouse_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetMyhouseInfo represents the MSG_MHF_GET_MYHOUSE_INFO +type MsgMhfGetMyhouseInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetMyhouseInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_MYHOUSE_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetMyhouseInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetMyhouseInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_notice.go b/network/mhfpacket/msg_mhf_get_notice.go new file mode 100644 index 000000000..ab9b59a4d --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_notice.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetNotice represents the MSG_MHF_GET_NOTICE +type MsgMhfGetNotice struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetNotice) Opcode() network.PacketID { + return network.MSG_MHF_GET_NOTICE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetNotice) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetNotice) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_paper_data.go b/network/mhfpacket/msg_mhf_get_paper_data.go new file mode 100644 index 000000000..7782f6f0f --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_paper_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetPaperData represents the MSG_MHF_GET_PAPER_DATA +type MsgMhfGetPaperData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetPaperData) Opcode() network.PacketID { + return network.MSG_MHF_GET_PAPER_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfGetPaperData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetPaperData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_rand_from_table.go b/network/mhfpacket/msg_mhf_get_rand_from_table.go new file mode 100644 index 000000000..e41143409 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_rand_from_table.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRandFromTable represents the MSG_MHF_GET_RAND_FROM_TABLE +type MsgMhfGetRandFromTable struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRandFromTable) Opcode() network.PacketID { + return network.MSG_MHF_GET_RAND_FROM_TABLE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRandFromTable) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRandFromTable) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_reject_guild_scout.go b/network/mhfpacket/msg_mhf_get_reject_guild_scout.go new file mode 100644 index 000000000..e70b7fb23 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_reject_guild_scout.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRejectGuildScout represents the MSG_MHF_GET_REJECT_GUILD_SCOUT +type MsgMhfGetRejectGuildScout struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRejectGuildScout) Opcode() network.PacketID { + return network.MSG_MHF_GET_REJECT_GUILD_SCOUT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRejectGuildScout) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRejectGuildScout) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_rengoku_binary.go b/network/mhfpacket/msg_mhf_get_rengoku_binary.go new file mode 100644 index 000000000..0cc06ed1f --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_rengoku_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRengokuBinary represents the MSG_MHF_GET_RENGOKU_BINARY +type MsgMhfGetRengokuBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRengokuBinary) Opcode() network.PacketID { + return network.MSG_MHF_GET_RENGOKU_BINARY +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRengokuBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRengokuBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_rengoku_ranking_rank.go b/network/mhfpacket/msg_mhf_get_rengoku_ranking_rank.go new file mode 100644 index 000000000..4df6aaf35 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_rengoku_ranking_rank.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRengokuRankingRank represents the MSG_MHF_GET_RENGOKU_RANKING_RANK +type MsgMhfGetRengokuRankingRank struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRengokuRankingRank) Opcode() network.PacketID { + return network.MSG_MHF_GET_RENGOKU_RANKING_RANK +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRengokuRankingRank) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRengokuRankingRank) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_restriction_event.go b/network/mhfpacket/msg_mhf_get_restriction_event.go new file mode 100644 index 000000000..3c28bbf46 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_restriction_event.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRestrictionEvent represents the MSG_MHF_GET_RESTRICTION_EVENT +type MsgMhfGetRestrictionEvent struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRestrictionEvent) Opcode() network.PacketID { + return network.MSG_MHF_GET_RESTRICTION_EVENT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRestrictionEvent) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRestrictionEvent) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_reward_song.go b/network/mhfpacket/msg_mhf_get_reward_song.go new file mode 100644 index 000000000..f7805b203 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_reward_song.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRewardSong represents the MSG_MHF_GET_REWARD_SONG +type MsgMhfGetRewardSong struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRewardSong) Opcode() network.PacketID { + return network.MSG_MHF_GET_REWARD_SONG +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRewardSong) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRewardSong) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ryoudama.go b/network/mhfpacket/msg_mhf_get_ryoudama.go new file mode 100644 index 000000000..4cfd5559f --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ryoudama.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetRyoudama represents the MSG_MHF_GET_RYOUDAMA +type MsgMhfGetRyoudama struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetRyoudama) Opcode() network.PacketID { + return network.MSG_MHF_GET_RYOUDAMA +} + +// Parse parses the packet from binary +func (m *MsgMhfGetRyoudama) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetRyoudama) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_seibattle.go b/network/mhfpacket/msg_mhf_get_seibattle.go new file mode 100644 index 000000000..f0ab6ca82 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_seibattle.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetSeibattle represents the MSG_MHF_GET_SEIBATTLE +type MsgMhfGetSeibattle struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetSeibattle) Opcode() network.PacketID { + return network.MSG_MHF_GET_SEIBATTLE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetSeibattle) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetSeibattle) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_senyu_daily_count.go b/network/mhfpacket/msg_mhf_get_senyu_daily_count.go new file mode 100644 index 000000000..2d32651db --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_senyu_daily_count.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetSenyuDailyCount represents the MSG_MHF_GET_SENYU_DAILY_COUNT +type MsgMhfGetSenyuDailyCount struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetSenyuDailyCount) Opcode() network.PacketID { + return network.MSG_MHF_GET_SENYU_DAILY_COUNT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetSenyuDailyCount) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetSenyuDailyCount) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_stepup_status.go b/network/mhfpacket/msg_mhf_get_stepup_status.go new file mode 100644 index 000000000..22fa0feab --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_stepup_status.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetStepupStatus represents the MSG_MHF_GET_STEPUP_STATUS +type MsgMhfGetStepupStatus struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetStepupStatus) Opcode() network.PacketID { + return network.MSG_MHF_GET_STEPUP_STATUS +} + +// Parse parses the packet from binary +func (m *MsgMhfGetStepupStatus) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetStepupStatus) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_tenrouirai.go b/network/mhfpacket/msg_mhf_get_tenrouirai.go new file mode 100644 index 000000000..109688b8f --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_tenrouirai.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetTenrouirai represents the MSG_MHF_GET_TENROUIRAI +type MsgMhfGetTenrouirai struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetTenrouirai) Opcode() network.PacketID { + return network.MSG_MHF_GET_TENROUIRAI +} + +// Parse parses the packet from binary +func (m *MsgMhfGetTenrouirai) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetTenrouirai) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_tiny_bin.go b/network/mhfpacket/msg_mhf_get_tiny_bin.go new file mode 100644 index 000000000..db9a3d952 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_tiny_bin.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetTinyBin represents the MSG_MHF_GET_TINY_BIN +type MsgMhfGetTinyBin struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetTinyBin) Opcode() network.PacketID { + return network.MSG_MHF_GET_TINY_BIN +} + +// Parse parses the packet from binary +func (m *MsgMhfGetTinyBin) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetTinyBin) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_tower_info.go b/network/mhfpacket/msg_mhf_get_tower_info.go new file mode 100644 index 000000000..c2bbcdf62 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_tower_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetTowerInfo represents the MSG_MHF_GET_TOWER_INFO +type MsgMhfGetTowerInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetTowerInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_TOWER_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetTowerInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetTowerInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_trend_weapon.go b/network/mhfpacket/msg_mhf_get_trend_weapon.go new file mode 100644 index 000000000..91204ffa2 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_trend_weapon.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetTrendWeapon represents the MSG_MHF_GET_TREND_WEAPON +type MsgMhfGetTrendWeapon struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetTrendWeapon) Opcode() network.PacketID { + return network.MSG_MHF_GET_TREND_WEAPON +} + +// Parse parses the packet from binary +func (m *MsgMhfGetTrendWeapon) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetTrendWeapon) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_bonus_quest_info.go b/network/mhfpacket/msg_mhf_get_ud_bonus_quest_info.go new file mode 100644 index 000000000..3f77e96ae --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_bonus_quest_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdBonusQuestInfo represents the MSG_MHF_GET_UD_BONUS_QUEST_INFO +type MsgMhfGetUdBonusQuestInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdBonusQuestInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_BONUS_QUEST_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdBonusQuestInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdBonusQuestInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_daily_present_list.go b/network/mhfpacket/msg_mhf_get_ud_daily_present_list.go new file mode 100644 index 000000000..a117eeae4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_daily_present_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdDailyPresentList represents the MSG_MHF_GET_UD_DAILY_PRESENT_LIST +type MsgMhfGetUdDailyPresentList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdDailyPresentList) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_DAILY_PRESENT_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdDailyPresentList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdDailyPresentList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_guild_map_info.go b/network/mhfpacket/msg_mhf_get_ud_guild_map_info.go new file mode 100644 index 000000000..1df67d8b2 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_guild_map_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdGuildMapInfo represents the MSG_MHF_GET_UD_GUILD_MAP_INFO +type MsgMhfGetUdGuildMapInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdGuildMapInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_GUILD_MAP_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdGuildMapInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdGuildMapInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_info.go b/network/mhfpacket/msg_mhf_get_ud_info.go new file mode 100644 index 000000000..d73402c97 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdInfo represents the MSG_MHF_GET_UD_INFO +type MsgMhfGetUdInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_monster_point.go b/network/mhfpacket/msg_mhf_get_ud_monster_point.go new file mode 100644 index 000000000..01de9256b --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_monster_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdMonsterPoint represents the MSG_MHF_GET_UD_MONSTER_POINT +type MsgMhfGetUdMonsterPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdMonsterPoint) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_MONSTER_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdMonsterPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdMonsterPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_my_point.go b/network/mhfpacket/msg_mhf_get_ud_my_point.go new file mode 100644 index 000000000..b2cf286fd --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_my_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdMyPoint represents the MSG_MHF_GET_UD_MY_POINT +type MsgMhfGetUdMyPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdMyPoint) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_MY_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdMyPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdMyPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_my_ranking.go b/network/mhfpacket/msg_mhf_get_ud_my_ranking.go new file mode 100644 index 000000000..430f1f5aa --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_my_ranking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdMyRanking represents the MSG_MHF_GET_UD_MY_RANKING +type MsgMhfGetUdMyRanking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdMyRanking) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_MY_RANKING +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdMyRanking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdMyRanking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_norma_present_list.go b/network/mhfpacket/msg_mhf_get_ud_norma_present_list.go new file mode 100644 index 000000000..d5df545b7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_norma_present_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdNormaPresentList represents the MSG_MHF_GET_UD_NORMA_PRESENT_LIST +type MsgMhfGetUdNormaPresentList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdNormaPresentList) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_NORMA_PRESENT_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdNormaPresentList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdNormaPresentList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_ranking.go b/network/mhfpacket/msg_mhf_get_ud_ranking.go new file mode 100644 index 000000000..d3d561bd9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_ranking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdRanking represents the MSG_MHF_GET_UD_RANKING +type MsgMhfGetUdRanking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdRanking) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_RANKING +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdRanking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdRanking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_ranking_reward_list.go b/network/mhfpacket/msg_mhf_get_ud_ranking_reward_list.go new file mode 100644 index 000000000..60d2e51c0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_ranking_reward_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdRankingRewardList represents the MSG_MHF_GET_UD_RANKING_REWARD_LIST +type MsgMhfGetUdRankingRewardList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdRankingRewardList) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_RANKING_REWARD_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdRankingRewardList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdRankingRewardList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_schedule.go b/network/mhfpacket/msg_mhf_get_ud_schedule.go new file mode 100644 index 000000000..bbe23ea56 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_schedule.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdSchedule represents the MSG_MHF_GET_UD_SCHEDULE +type MsgMhfGetUdSchedule struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdSchedule) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_SCHEDULE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdSchedule) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdSchedule) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_selected_color_info.go b/network/mhfpacket/msg_mhf_get_ud_selected_color_info.go new file mode 100644 index 000000000..a124e441a --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_selected_color_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdSelectedColorInfo represents the MSG_MHF_GET_UD_SELECTED_COLOR_INFO +type MsgMhfGetUdSelectedColorInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdSelectedColorInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_SELECTED_COLOR_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdSelectedColorInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdSelectedColorInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_shop_coin.go b/network/mhfpacket/msg_mhf_get_ud_shop_coin.go new file mode 100644 index 000000000..450b68239 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_shop_coin.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdShopCoin represents the MSG_MHF_GET_UD_SHOP_COIN +type MsgMhfGetUdShopCoin struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdShopCoin) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_SHOP_COIN +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdShopCoin) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdShopCoin) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_bonus_quest.go b/network/mhfpacket/msg_mhf_get_ud_tactics_bonus_quest.go new file mode 100644 index 000000000..ede4dcb0a --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_bonus_quest.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsBonusQuest represents the MSG_MHF_GET_UD_TACTICS_BONUS_QUEST +type MsgMhfGetUdTacticsBonusQuest struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsBonusQuest) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_BONUS_QUEST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsBonusQuest) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsBonusQuest) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_first_quest_bonus.go b/network/mhfpacket/msg_mhf_get_ud_tactics_first_quest_bonus.go new file mode 100644 index 000000000..bf08cf027 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_first_quest_bonus.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsFirstQuestBonus represents the MSG_MHF_GET_UD_TACTICS_FIRST_QUEST_BONUS +type MsgMhfGetUdTacticsFirstQuestBonus struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsFirstQuestBonus) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_FIRST_QUEST_BONUS +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsFirstQuestBonus) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsFirstQuestBonus) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_follower.go b/network/mhfpacket/msg_mhf_get_ud_tactics_follower.go new file mode 100644 index 000000000..4c6231710 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_follower.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsFollower represents the MSG_MHF_GET_UD_TACTICS_FOLLOWER +type MsgMhfGetUdTacticsFollower struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsFollower) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_FOLLOWER +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsFollower) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsFollower) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_log.go b/network/mhfpacket/msg_mhf_get_ud_tactics_log.go new file mode 100644 index 000000000..afb8660b9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_log.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsLog represents the MSG_MHF_GET_UD_TACTICS_LOG +type MsgMhfGetUdTacticsLog struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsLog) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_LOG +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsLog) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsLog) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_point.go b/network/mhfpacket/msg_mhf_get_ud_tactics_point.go new file mode 100644 index 000000000..adcb75bb4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsPoint represents the MSG_MHF_GET_UD_TACTICS_POINT +type MsgMhfGetUdTacticsPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsPoint) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_ranking.go b/network/mhfpacket/msg_mhf_get_ud_tactics_ranking.go new file mode 100644 index 000000000..fe95e2118 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_ranking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsRanking represents the MSG_MHF_GET_UD_TACTICS_RANKING +type MsgMhfGetUdTacticsRanking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsRanking) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_RANKING +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsRanking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsRanking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_remaining_point.go b/network/mhfpacket/msg_mhf_get_ud_tactics_remaining_point.go new file mode 100644 index 000000000..827d64447 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_remaining_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsRemainingPoint represents the MSG_MHF_GET_UD_TACTICS_REMAINING_POINT +type MsgMhfGetUdTacticsRemainingPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsRemainingPoint) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_REMAINING_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsRemainingPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsRemainingPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_tactics_reward_list.go b/network/mhfpacket/msg_mhf_get_ud_tactics_reward_list.go new file mode 100644 index 000000000..8c771d0a3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_tactics_reward_list.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTacticsRewardList represents the MSG_MHF_GET_UD_TACTICS_REWARD_LIST +type MsgMhfGetUdTacticsRewardList struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTacticsRewardList) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TACTICS_REWARD_LIST +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTacticsRewardList) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTacticsRewardList) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_ud_total_point_info.go b/network/mhfpacket/msg_mhf_get_ud_total_point_info.go new file mode 100644 index 000000000..e8e5ece5e --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_ud_total_point_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetUdTotalPointInfo represents the MSG_MHF_GET_UD_TOTAL_POINT_INFO +type MsgMhfGetUdTotalPointInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetUdTotalPointInfo) Opcode() network.PacketID { + return network.MSG_MHF_GET_UD_TOTAL_POINT_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfGetUdTotalPointInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetUdTotalPointInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_weekly_schedule.go b/network/mhfpacket/msg_mhf_get_weekly_schedule.go new file mode 100644 index 000000000..b6458028b --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_weekly_schedule.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetWeeklySchedule represents the MSG_MHF_GET_WEEKLY_SCHEDULE +type MsgMhfGetWeeklySchedule struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetWeeklySchedule) Opcode() network.PacketID { + return network.MSG_MHF_GET_WEEKLY_SCHEDULE +} + +// Parse parses the packet from binary +func (m *MsgMhfGetWeeklySchedule) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetWeeklySchedule) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_get_weekly_seibatu_ranking_reward.go b/network/mhfpacket/msg_mhf_get_weekly_seibatu_ranking_reward.go new file mode 100644 index 000000000..c87db31bb --- /dev/null +++ b/network/mhfpacket/msg_mhf_get_weekly_seibatu_ranking_reward.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGetWeeklySeibatuRankingReward represents the MSG_MHF_GET_WEEKLY_SEIBATU_RANKING_REWARD +type MsgMhfGetWeeklySeibatuRankingReward struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGetWeeklySeibatuRankingReward) Opcode() network.PacketID { + return network.MSG_MHF_GET_WEEKLY_SEIBATU_RANKING_REWARD +} + +// Parse parses the packet from binary +func (m *MsgMhfGetWeeklySeibatuRankingReward) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGetWeeklySeibatuRankingReward) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_guild_huntdata.go b/network/mhfpacket/msg_mhf_guild_huntdata.go new file mode 100644 index 000000000..7cb745cd6 --- /dev/null +++ b/network/mhfpacket/msg_mhf_guild_huntdata.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfGuildHuntdata represents the MSG_MHF_GUILD_HUNTDATA +type MsgMhfGuildHuntdata struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfGuildHuntdata) Opcode() network.PacketID { + return network.MSG_MHF_GUILD_HUNTDATA +} + +// Parse parses the packet from binary +func (m *MsgMhfGuildHuntdata) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfGuildHuntdata) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_info_festa.go b/network/mhfpacket/msg_mhf_info_festa.go new file mode 100644 index 000000000..0e65fac3d --- /dev/null +++ b/network/mhfpacket/msg_mhf_info_festa.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfInfoFesta represents the MSG_MHF_INFO_FESTA +type MsgMhfInfoFesta struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfInfoFesta) Opcode() network.PacketID { + return network.MSG_MHF_INFO_FESTA +} + +// Parse parses the packet from binary +func (m *MsgMhfInfoFesta) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfInfoFesta) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_info_guild.go b/network/mhfpacket/msg_mhf_info_guild.go new file mode 100644 index 000000000..dad8df62a --- /dev/null +++ b/network/mhfpacket/msg_mhf_info_guild.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfInfoGuild represents the MSG_MHF_INFO_GUILD +type MsgMhfInfoGuild struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfInfoGuild) Opcode() network.PacketID { + return network.MSG_MHF_INFO_GUILD +} + +// Parse parses the packet from binary +func (m *MsgMhfInfoGuild) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfInfoGuild) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_info_joint.go b/network/mhfpacket/msg_mhf_info_joint.go new file mode 100644 index 000000000..58ec7c94b --- /dev/null +++ b/network/mhfpacket/msg_mhf_info_joint.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfInfoJoint represents the MSG_MHF_INFO_JOINT +type MsgMhfInfoJoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfInfoJoint) Opcode() network.PacketID { + return network.MSG_MHF_INFO_JOINT +} + +// Parse parses the packet from binary +func (m *MsgMhfInfoJoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfInfoJoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_info_scenario_counter.go b/network/mhfpacket/msg_mhf_info_scenario_counter.go new file mode 100644 index 000000000..9e38aa353 --- /dev/null +++ b/network/mhfpacket/msg_mhf_info_scenario_counter.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfInfoScenarioCounter represents the MSG_MHF_INFO_SCENARIO_COUNTER +type MsgMhfInfoScenarioCounter struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfInfoScenarioCounter) Opcode() network.PacketID { + return network.MSG_MHF_INFO_SCENARIO_COUNTER +} + +// Parse parses the packet from binary +func (m *MsgMhfInfoScenarioCounter) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfInfoScenarioCounter) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_info_tournament.go b/network/mhfpacket/msg_mhf_info_tournament.go new file mode 100644 index 000000000..76cafc6a0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_info_tournament.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfInfoTournament represents the MSG_MHF_INFO_TOURNAMENT +type MsgMhfInfoTournament struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfInfoTournament) Opcode() network.PacketID { + return network.MSG_MHF_INFO_TOURNAMENT +} + +// Parse parses the packet from binary +func (m *MsgMhfInfoTournament) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfInfoTournament) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_kick_export_force.go b/network/mhfpacket/msg_mhf_kick_export_force.go new file mode 100644 index 000000000..a96a4d7f3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_kick_export_force.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfKickExportForce represents the MSG_MHF_KICK_EXPORT_FORCE +type MsgMhfKickExportForce struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfKickExportForce) Opcode() network.PacketID { + return network.MSG_MHF_KICK_EXPORT_FORCE +} + +// Parse parses the packet from binary +func (m *MsgMhfKickExportForce) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfKickExportForce) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_list_mail.go b/network/mhfpacket/msg_mhf_list_mail.go new file mode 100644 index 000000000..c6852c81f --- /dev/null +++ b/network/mhfpacket/msg_mhf_list_mail.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfListMail represents the MSG_MHF_LIST_MAIL +type MsgMhfListMail struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfListMail) Opcode() network.PacketID { + return network.MSG_MHF_LIST_MAIL +} + +// Parse parses the packet from binary +func (m *MsgMhfListMail) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfListMail) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_list_member.go b/network/mhfpacket/msg_mhf_list_member.go new file mode 100644 index 000000000..1d1023bdf --- /dev/null +++ b/network/mhfpacket/msg_mhf_list_member.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfListMember represents the MSG_MHF_LIST_MEMBER +type MsgMhfListMember struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfListMember) Opcode() network.PacketID { + return network.MSG_MHF_LIST_MEMBER +} + +// Parse parses the packet from binary +func (m *MsgMhfListMember) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfListMember) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_deco_myset.go b/network/mhfpacket/msg_mhf_load_deco_myset.go new file mode 100644 index 000000000..9b0040f9d --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_deco_myset.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadDecoMyset represents the MSG_MHF_LOAD_DECO_MYSET +type MsgMhfLoadDecoMyset struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadDecoMyset) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_DECO_MYSET +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadDecoMyset) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadDecoMyset) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_favorite_quest.go b/network/mhfpacket/msg_mhf_load_favorite_quest.go new file mode 100644 index 000000000..b1da3c9f5 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_favorite_quest.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadFavoriteQuest represents the MSG_MHF_LOAD_FAVORITE_QUEST +type MsgMhfLoadFavoriteQuest struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadFavoriteQuest) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_FAVORITE_QUEST +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadFavoriteQuest) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadFavoriteQuest) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_guild_adventure.go b/network/mhfpacket/msg_mhf_load_guild_adventure.go new file mode 100644 index 000000000..8760cdf21 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_guild_adventure.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadGuildAdventure represents the MSG_MHF_LOAD_GUILD_ADVENTURE +type MsgMhfLoadGuildAdventure struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadGuildAdventure) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_GUILD_ADVENTURE +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadGuildAdventure) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadGuildAdventure) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_guild_cooking.go b/network/mhfpacket/msg_mhf_load_guild_cooking.go new file mode 100644 index 000000000..d61125e24 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_guild_cooking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadGuildCooking represents the MSG_MHF_LOAD_GUILD_COOKING +type MsgMhfLoadGuildCooking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadGuildCooking) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_GUILD_COOKING +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadGuildCooking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadGuildCooking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_house.go b/network/mhfpacket/msg_mhf_load_house.go new file mode 100644 index 000000000..72846caa4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_house.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadHouse represents the MSG_MHF_LOAD_HOUSE +type MsgMhfLoadHouse struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadHouse) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_HOUSE +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadHouse) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadHouse) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_hunter_navi.go b/network/mhfpacket/msg_mhf_load_hunter_navi.go new file mode 100644 index 000000000..fb30a0562 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_hunter_navi.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadHunterNavi represents the MSG_MHF_LOAD_HUNTER_NAVI +type MsgMhfLoadHunterNavi struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadHunterNavi) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_HUNTER_NAVI +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadHunterNavi) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadHunterNavi) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_legend_dispatch.go b/network/mhfpacket/msg_mhf_load_legend_dispatch.go new file mode 100644 index 000000000..71fa18939 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_legend_dispatch.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadLegendDispatch represents the MSG_MHF_LOAD_LEGEND_DISPATCH +type MsgMhfLoadLegendDispatch struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadLegendDispatch) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_LEGEND_DISPATCH +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadLegendDispatch) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadLegendDispatch) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_mezfes_data.go b/network/mhfpacket/msg_mhf_load_mezfes_data.go new file mode 100644 index 000000000..1e265f3a6 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_mezfes_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadMezfesData represents the MSG_MHF_LOAD_MEZFES_DATA +type MsgMhfLoadMezfesData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadMezfesData) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_MEZFES_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadMezfesData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadMezfesData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_otomo_airou.go b/network/mhfpacket/msg_mhf_load_otomo_airou.go new file mode 100644 index 000000000..bf3bbdbe8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_otomo_airou.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadOtomoAirou represents the MSG_MHF_LOAD_OTOMO_AIROU +type MsgMhfLoadOtomoAirou struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadOtomoAirou) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_OTOMO_AIROU +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadOtomoAirou) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadOtomoAirou) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_partner.go b/network/mhfpacket/msg_mhf_load_partner.go new file mode 100644 index 000000000..63b0e9a53 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_partner.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadPartner represents the MSG_MHF_LOAD_PARTNER +type MsgMhfLoadPartner struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadPartner) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_PARTNER +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadPartner) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadPartner) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_plate_box.go b/network/mhfpacket/msg_mhf_load_plate_box.go new file mode 100644 index 000000000..8625e2038 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_plate_box.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadPlateBox represents the MSG_MHF_LOAD_PLATE_BOX +type MsgMhfLoadPlateBox struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadPlateBox) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_PLATE_BOX +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadPlateBox) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadPlateBox) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_plate_data.go b/network/mhfpacket/msg_mhf_load_plate_data.go new file mode 100644 index 000000000..5fc835c06 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_plate_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadPlateData represents the MSG_MHF_LOAD_PLATE_DATA +type MsgMhfLoadPlateData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadPlateData) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_PLATE_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadPlateData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadPlateData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_plate_myset.go b/network/mhfpacket/msg_mhf_load_plate_myset.go new file mode 100644 index 000000000..831d807ce --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_plate_myset.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadPlateMyset represents the MSG_MHF_LOAD_PLATE_MYSET +type MsgMhfLoadPlateMyset struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadPlateMyset) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_PLATE_MYSET +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadPlateMyset) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadPlateMyset) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_rengoku_data.go b/network/mhfpacket/msg_mhf_load_rengoku_data.go new file mode 100644 index 000000000..9005716a8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_rengoku_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadRengokuData represents the MSG_MHF_LOAD_RENGOKU_DATA +type MsgMhfLoadRengokuData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadRengokuData) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_RENGOKU_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadRengokuData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadRengokuData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_load_scenario_data.go b/network/mhfpacket/msg_mhf_load_scenario_data.go new file mode 100644 index 000000000..b115c0712 --- /dev/null +++ b/network/mhfpacket/msg_mhf_load_scenario_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoadScenarioData represents the MSG_MHF_LOAD_SCENARIO_DATA +type MsgMhfLoadScenarioData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoadScenarioData) Opcode() network.PacketID { + return network.MSG_MHF_LOAD_SCENARIO_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfLoadScenarioData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoadScenarioData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_loaddata.go b/network/mhfpacket/msg_mhf_loaddata.go new file mode 100644 index 000000000..f34ec6b96 --- /dev/null +++ b/network/mhfpacket/msg_mhf_loaddata.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfLoaddata represents the MSG_MHF_LOADDATA +type MsgMhfLoaddata struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfLoaddata) Opcode() network.PacketID { + return network.MSG_MHF_LOADDATA +} + +// Parse parses the packet from binary +func (m *MsgMhfLoaddata) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfLoaddata) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_mercenary_huntdata.go b/network/mhfpacket/msg_mhf_mercenary_huntdata.go new file mode 100644 index 000000000..24aa08180 --- /dev/null +++ b/network/mhfpacket/msg_mhf_mercenary_huntdata.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfMercenaryHuntdata represents the MSG_MHF_MERCENARY_HUNTDATA +type MsgMhfMercenaryHuntdata struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfMercenaryHuntdata) Opcode() network.PacketID { + return network.MSG_MHF_MERCENARY_HUNTDATA +} + +// Parse parses the packet from binary +func (m *MsgMhfMercenaryHuntdata) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfMercenaryHuntdata) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_operate_guild.go b/network/mhfpacket/msg_mhf_operate_guild.go new file mode 100644 index 000000000..7231ef560 --- /dev/null +++ b/network/mhfpacket/msg_mhf_operate_guild.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOperateGuild represents the MSG_MHF_OPERATE_GUILD +type MsgMhfOperateGuild struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOperateGuild) Opcode() network.PacketID { + return network.MSG_MHF_OPERATE_GUILD +} + +// Parse parses the packet from binary +func (m *MsgMhfOperateGuild) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOperateGuild) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_operate_guild_member.go b/network/mhfpacket/msg_mhf_operate_guild_member.go new file mode 100644 index 000000000..27470b28b --- /dev/null +++ b/network/mhfpacket/msg_mhf_operate_guild_member.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOperateGuildMember represents the MSG_MHF_OPERATE_GUILD_MEMBER +type MsgMhfOperateGuildMember struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOperateGuildMember) Opcode() network.PacketID { + return network.MSG_MHF_OPERATE_GUILD_MEMBER +} + +// Parse parses the packet from binary +func (m *MsgMhfOperateGuildMember) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOperateGuildMember) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_operate_guild_tresure_report.go b/network/mhfpacket/msg_mhf_operate_guild_tresure_report.go new file mode 100644 index 000000000..a0a6f222b --- /dev/null +++ b/network/mhfpacket/msg_mhf_operate_guild_tresure_report.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOperateGuildTresureReport represents the MSG_MHF_OPERATE_GUILD_TRESURE_REPORT +type MsgMhfOperateGuildTresureReport struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOperateGuildTresureReport) Opcode() network.PacketID { + return network.MSG_MHF_OPERATE_GUILD_TRESURE_REPORT +} + +// Parse parses the packet from binary +func (m *MsgMhfOperateGuildTresureReport) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOperateGuildTresureReport) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_operate_joint.go b/network/mhfpacket/msg_mhf_operate_joint.go new file mode 100644 index 000000000..951679b5f --- /dev/null +++ b/network/mhfpacket/msg_mhf_operate_joint.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOperateJoint represents the MSG_MHF_OPERATE_JOINT +type MsgMhfOperateJoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOperateJoint) Opcode() network.PacketID { + return network.MSG_MHF_OPERATE_JOINT +} + +// Parse parses the packet from binary +func (m *MsgMhfOperateJoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOperateJoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_operate_warehouse.go b/network/mhfpacket/msg_mhf_operate_warehouse.go new file mode 100644 index 000000000..b03378b7b --- /dev/null +++ b/network/mhfpacket/msg_mhf_operate_warehouse.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOperateWarehouse represents the MSG_MHF_OPERATE_WAREHOUSE +type MsgMhfOperateWarehouse struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOperateWarehouse) Opcode() network.PacketID { + return network.MSG_MHF_OPERATE_WAREHOUSE +} + +// Parse parses the packet from binary +func (m *MsgMhfOperateWarehouse) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOperateWarehouse) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_operation_inv_guild.go b/network/mhfpacket/msg_mhf_operation_inv_guild.go new file mode 100644 index 000000000..2d7659276 --- /dev/null +++ b/network/mhfpacket/msg_mhf_operation_inv_guild.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOperationInvGuild represents the MSG_MHF_OPERATION_INV_GUILD +type MsgMhfOperationInvGuild struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOperationInvGuild) Opcode() network.PacketID { + return network.MSG_MHF_OPERATION_INV_GUILD +} + +// Parse parses the packet from binary +func (m *MsgMhfOperationInvGuild) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOperationInvGuild) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_opr_member.go b/network/mhfpacket/msg_mhf_opr_member.go new file mode 100644 index 000000000..1505a456e --- /dev/null +++ b/network/mhfpacket/msg_mhf_opr_member.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOprMember represents the MSG_MHF_OPR_MEMBER +type MsgMhfOprMember struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOprMember) Opcode() network.PacketID { + return network.MSG_MHF_OPR_MEMBER +} + +// Parse parses the packet from binary +func (m *MsgMhfOprMember) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOprMember) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_oprt_mail.go b/network/mhfpacket/msg_mhf_oprt_mail.go new file mode 100644 index 000000000..8d43ff5b7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_oprt_mail.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfOprtMail represents the MSG_MHF_OPRT_MAIL +type MsgMhfOprtMail struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfOprtMail) Opcode() network.PacketID { + return network.MSG_MHF_OPRT_MAIL +} + +// Parse parses the packet from binary +func (m *MsgMhfOprtMail) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfOprtMail) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_payment_achievement.go b/network/mhfpacket/msg_mhf_payment_achievement.go new file mode 100644 index 000000000..528de4ab5 --- /dev/null +++ b/network/mhfpacket/msg_mhf_payment_achievement.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPaymentAchievement represents the MSG_MHF_PAYMENT_ACHIEVEMENT +type MsgMhfPaymentAchievement struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPaymentAchievement) Opcode() network.PacketID { + return network.MSG_MHF_PAYMENT_ACHIEVEMENT +} + +// Parse parses the packet from binary +func (m *MsgMhfPaymentAchievement) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPaymentAchievement) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_play_box_gacha.go b/network/mhfpacket/msg_mhf_play_box_gacha.go new file mode 100644 index 000000000..3e9d7c7a9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_play_box_gacha.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPlayBoxGacha represents the MSG_MHF_PLAY_BOX_GACHA +type MsgMhfPlayBoxGacha struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPlayBoxGacha) Opcode() network.PacketID { + return network.MSG_MHF_PLAY_BOX_GACHA +} + +// Parse parses the packet from binary +func (m *MsgMhfPlayBoxGacha) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPlayBoxGacha) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_play_free_gacha.go b/network/mhfpacket/msg_mhf_play_free_gacha.go new file mode 100644 index 000000000..119896fce --- /dev/null +++ b/network/mhfpacket/msg_mhf_play_free_gacha.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPlayFreeGacha represents the MSG_MHF_PLAY_FREE_GACHA +type MsgMhfPlayFreeGacha struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPlayFreeGacha) Opcode() network.PacketID { + return network.MSG_MHF_PLAY_FREE_GACHA +} + +// Parse parses the packet from binary +func (m *MsgMhfPlayFreeGacha) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPlayFreeGacha) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_play_normal_gacha.go b/network/mhfpacket/msg_mhf_play_normal_gacha.go new file mode 100644 index 000000000..d647098d9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_play_normal_gacha.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPlayNormalGacha represents the MSG_MHF_PLAY_NORMAL_GACHA +type MsgMhfPlayNormalGacha struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPlayNormalGacha) Opcode() network.PacketID { + return network.MSG_MHF_PLAY_NORMAL_GACHA +} + +// Parse parses the packet from binary +func (m *MsgMhfPlayNormalGacha) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPlayNormalGacha) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_play_stepup_gacha.go b/network/mhfpacket/msg_mhf_play_stepup_gacha.go new file mode 100644 index 000000000..647855629 --- /dev/null +++ b/network/mhfpacket/msg_mhf_play_stepup_gacha.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPlayStepupGacha represents the MSG_MHF_PLAY_STEPUP_GACHA +type MsgMhfPlayStepupGacha struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPlayStepupGacha) Opcode() network.PacketID { + return network.MSG_MHF_PLAY_STEPUP_GACHA +} + +// Parse parses the packet from binary +func (m *MsgMhfPlayStepupGacha) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPlayStepupGacha) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_boost_time.go b/network/mhfpacket/msg_mhf_post_boost_time.go new file mode 100644 index 000000000..82ad78f7d --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_boost_time.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostBoostTime represents the MSG_MHF_POST_BOOST_TIME +type MsgMhfPostBoostTime struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostBoostTime) Opcode() network.PacketID { + return network.MSG_MHF_POST_BOOST_TIME +} + +// Parse parses the packet from binary +func (m *MsgMhfPostBoostTime) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostBoostTime) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_boost_time_limit.go b/network/mhfpacket/msg_mhf_post_boost_time_limit.go new file mode 100644 index 000000000..d6a557493 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_boost_time_limit.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostBoostTimeLimit represents the MSG_MHF_POST_BOOST_TIME_LIMIT +type MsgMhfPostBoostTimeLimit struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostBoostTimeLimit) Opcode() network.PacketID { + return network.MSG_MHF_POST_BOOST_TIME_LIMIT +} + +// Parse parses the packet from binary +func (m *MsgMhfPostBoostTimeLimit) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostBoostTimeLimit) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_boost_time_quest_return.go b/network/mhfpacket/msg_mhf_post_boost_time_quest_return.go new file mode 100644 index 000000000..1cac00928 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_boost_time_quest_return.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostBoostTimeQuestReturn represents the MSG_MHF_POST_BOOST_TIME_QUEST_RETURN +type MsgMhfPostBoostTimeQuestReturn struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostBoostTimeQuestReturn) Opcode() network.PacketID { + return network.MSG_MHF_POST_BOOST_TIME_QUEST_RETURN +} + +// Parse parses the packet from binary +func (m *MsgMhfPostBoostTimeQuestReturn) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostBoostTimeQuestReturn) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_cafe_duration_bonus_received.go b/network/mhfpacket/msg_mhf_post_cafe_duration_bonus_received.go new file mode 100644 index 000000000..fa0f63ea7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_cafe_duration_bonus_received.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostCafeDurationBonusReceived represents the MSG_MHF_POST_CAFE_DURATION_BONUS_RECEIVED +type MsgMhfPostCafeDurationBonusReceived struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostCafeDurationBonusReceived) Opcode() network.PacketID { + return network.MSG_MHF_POST_CAFE_DURATION_BONUS_RECEIVED +} + +// Parse parses the packet from binary +func (m *MsgMhfPostCafeDurationBonusReceived) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostCafeDurationBonusReceived) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_gem_info.go b/network/mhfpacket/msg_mhf_post_gem_info.go new file mode 100644 index 000000000..36565c2dc --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_gem_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostGemInfo represents the MSG_MHF_POST_GEM_INFO +type MsgMhfPostGemInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostGemInfo) Opcode() network.PacketID { + return network.MSG_MHF_POST_GEM_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfPostGemInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostGemInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_guild_scout.go b/network/mhfpacket/msg_mhf_post_guild_scout.go new file mode 100644 index 000000000..4ee8066a4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_guild_scout.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostGuildScout represents the MSG_MHF_POST_GUILD_SCOUT +type MsgMhfPostGuildScout struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostGuildScout) Opcode() network.PacketID { + return network.MSG_MHF_POST_GUILD_SCOUT +} + +// Parse parses the packet from binary +func (m *MsgMhfPostGuildScout) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostGuildScout) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_notice.go b/network/mhfpacket/msg_mhf_post_notice.go new file mode 100644 index 000000000..33bff141d --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_notice.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostNotice represents the MSG_MHF_POST_NOTICE +type MsgMhfPostNotice struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostNotice) Opcode() network.PacketID { + return network.MSG_MHF_POST_NOTICE +} + +// Parse parses the packet from binary +func (m *MsgMhfPostNotice) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostNotice) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_ryoudama.go b/network/mhfpacket/msg_mhf_post_ryoudama.go new file mode 100644 index 000000000..14a010e7c --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_ryoudama.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostRyoudama represents the MSG_MHF_POST_RYOUDAMA +type MsgMhfPostRyoudama struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostRyoudama) Opcode() network.PacketID { + return network.MSG_MHF_POST_RYOUDAMA +} + +// Parse parses the packet from binary +func (m *MsgMhfPostRyoudama) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostRyoudama) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_seibattle.go b/network/mhfpacket/msg_mhf_post_seibattle.go new file mode 100644 index 000000000..862581540 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_seibattle.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostSeibattle represents the MSG_MHF_POST_SEIBATTLE +type MsgMhfPostSeibattle struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostSeibattle) Opcode() network.PacketID { + return network.MSG_MHF_POST_SEIBATTLE +} + +// Parse parses the packet from binary +func (m *MsgMhfPostSeibattle) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostSeibattle) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_tenrouirai.go b/network/mhfpacket/msg_mhf_post_tenrouirai.go new file mode 100644 index 000000000..f0f07caa1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_tenrouirai.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostTenrouirai represents the MSG_MHF_POST_TENROUIRAI +type MsgMhfPostTenrouirai struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostTenrouirai) Opcode() network.PacketID { + return network.MSG_MHF_POST_TENROUIRAI +} + +// Parse parses the packet from binary +func (m *MsgMhfPostTenrouirai) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostTenrouirai) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_tiny_bin.go b/network/mhfpacket/msg_mhf_post_tiny_bin.go new file mode 100644 index 000000000..02070b2b8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_tiny_bin.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostTinyBin represents the MSG_MHF_POST_TINY_BIN +type MsgMhfPostTinyBin struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostTinyBin) Opcode() network.PacketID { + return network.MSG_MHF_POST_TINY_BIN +} + +// Parse parses the packet from binary +func (m *MsgMhfPostTinyBin) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostTinyBin) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_post_tower_info.go b/network/mhfpacket/msg_mhf_post_tower_info.go new file mode 100644 index 000000000..553b610d3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_post_tower_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPostTowerInfo represents the MSG_MHF_POST_TOWER_INFO +type MsgMhfPostTowerInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPostTowerInfo) Opcode() network.PacketID { + return network.MSG_MHF_POST_TOWER_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfPostTowerInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPostTowerInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_present_box.go b/network/mhfpacket/msg_mhf_present_box.go new file mode 100644 index 000000000..96bc9dfc2 --- /dev/null +++ b/network/mhfpacket/msg_mhf_present_box.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfPresentBox represents the MSG_MHF_PRESENT_BOX +type MsgMhfPresentBox struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfPresentBox) Opcode() network.PacketID { + return network.MSG_MHF_PRESENT_BOX +} + +// Parse parses the packet from binary +func (m *MsgMhfPresentBox) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfPresentBox) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_beat_level.go b/network/mhfpacket/msg_mhf_read_beat_level.go new file mode 100644 index 000000000..85a6cd334 --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_beat_level.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadBeatLevel represents the MSG_MHF_READ_BEAT_LEVEL +type MsgMhfReadBeatLevel struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadBeatLevel) Opcode() network.PacketID { + return network.MSG_MHF_READ_BEAT_LEVEL +} + +// Parse parses the packet from binary +func (m *MsgMhfReadBeatLevel) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadBeatLevel) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_beat_level_all_ranking.go b/network/mhfpacket/msg_mhf_read_beat_level_all_ranking.go new file mode 100644 index 000000000..98c598d3a --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_beat_level_all_ranking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadBeatLevelAllRanking represents the MSG_MHF_READ_BEAT_LEVEL_ALL_RANKING +type MsgMhfReadBeatLevelAllRanking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadBeatLevelAllRanking) Opcode() network.PacketID { + return network.MSG_MHF_READ_BEAT_LEVEL_ALL_RANKING +} + +// Parse parses the packet from binary +func (m *MsgMhfReadBeatLevelAllRanking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadBeatLevelAllRanking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_beat_level_my_ranking.go b/network/mhfpacket/msg_mhf_read_beat_level_my_ranking.go new file mode 100644 index 000000000..dec046681 --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_beat_level_my_ranking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadBeatLevelMyRanking represents the MSG_MHF_READ_BEAT_LEVEL_MY_RANKING +type MsgMhfReadBeatLevelMyRanking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadBeatLevelMyRanking) Opcode() network.PacketID { + return network.MSG_MHF_READ_BEAT_LEVEL_MY_RANKING +} + +// Parse parses the packet from binary +func (m *MsgMhfReadBeatLevelMyRanking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadBeatLevelMyRanking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_guildcard.go b/network/mhfpacket/msg_mhf_read_guildcard.go new file mode 100644 index 000000000..b0eabb7e9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_guildcard.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadGuildcard represents the MSG_MHF_READ_GUILDCARD +type MsgMhfReadGuildcard struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadGuildcard) Opcode() network.PacketID { + return network.MSG_MHF_READ_GUILDCARD +} + +// Parse parses the packet from binary +func (m *MsgMhfReadGuildcard) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadGuildcard) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_last_week_beat_ranking.go b/network/mhfpacket/msg_mhf_read_last_week_beat_ranking.go new file mode 100644 index 000000000..ede890895 --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_last_week_beat_ranking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadLastWeekBeatRanking represents the MSG_MHF_READ_LAST_WEEK_BEAT_RANKING +type MsgMhfReadLastWeekBeatRanking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadLastWeekBeatRanking) Opcode() network.PacketID { + return network.MSG_MHF_READ_LAST_WEEK_BEAT_RANKING +} + +// Parse parses the packet from binary +func (m *MsgMhfReadLastWeekBeatRanking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadLastWeekBeatRanking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_mail.go b/network/mhfpacket/msg_mhf_read_mail.go new file mode 100644 index 000000000..628cb574a --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_mail.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadMail represents the MSG_MHF_READ_MAIL +type MsgMhfReadMail struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadMail) Opcode() network.PacketID { + return network.MSG_MHF_READ_MAIL +} + +// Parse parses the packet from binary +func (m *MsgMhfReadMail) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadMail) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_mercenary_m.go b/network/mhfpacket/msg_mhf_read_mercenary_m.go new file mode 100644 index 000000000..af98f41f3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_mercenary_m.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadMercenaryM represents the MSG_MHF_READ_MERCENARY_M +type MsgMhfReadMercenaryM struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadMercenaryM) Opcode() network.PacketID { + return network.MSG_MHF_READ_MERCENARY_M +} + +// Parse parses the packet from binary +func (m *MsgMhfReadMercenaryM) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadMercenaryM) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_read_mercenary_w.go b/network/mhfpacket/msg_mhf_read_mercenary_w.go new file mode 100644 index 000000000..49c853949 --- /dev/null +++ b/network/mhfpacket/msg_mhf_read_mercenary_w.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReadMercenaryW represents the MSG_MHF_READ_MERCENARY_W +type MsgMhfReadMercenaryW struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReadMercenaryW) Opcode() network.PacketID { + return network.MSG_MHF_READ_MERCENARY_W +} + +// Parse parses the packet from binary +func (m *MsgMhfReadMercenaryW) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReadMercenaryW) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_receive_cafe_duration_bonus.go b/network/mhfpacket/msg_mhf_receive_cafe_duration_bonus.go new file mode 100644 index 000000000..75c9a1ff1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_receive_cafe_duration_bonus.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReceiveCafeDurationBonus represents the MSG_MHF_RECEIVE_CAFE_DURATION_BONUS +type MsgMhfReceiveCafeDurationBonus struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReceiveCafeDurationBonus) Opcode() network.PacketID { + return network.MSG_MHF_RECEIVE_CAFE_DURATION_BONUS +} + +// Parse parses the packet from binary +func (m *MsgMhfReceiveCafeDurationBonus) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReceiveCafeDurationBonus) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_receive_gacha_item.go b/network/mhfpacket/msg_mhf_receive_gacha_item.go new file mode 100644 index 000000000..31bf2f027 --- /dev/null +++ b/network/mhfpacket/msg_mhf_receive_gacha_item.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReceiveGachaItem represents the MSG_MHF_RECEIVE_GACHA_ITEM +type MsgMhfReceiveGachaItem struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReceiveGachaItem) Opcode() network.PacketID { + return network.MSG_MHF_RECEIVE_GACHA_ITEM +} + +// Parse parses the packet from binary +func (m *MsgMhfReceiveGachaItem) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReceiveGachaItem) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_regist_guild_adventure.go b/network/mhfpacket/msg_mhf_regist_guild_adventure.go new file mode 100644 index 000000000..4d36905e7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_regist_guild_adventure.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfRegistGuildAdventure represents the MSG_MHF_REGIST_GUILD_ADVENTURE +type MsgMhfRegistGuildAdventure struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfRegistGuildAdventure) Opcode() network.PacketID { + return network.MSG_MHF_REGIST_GUILD_ADVENTURE +} + +// Parse parses the packet from binary +func (m *MsgMhfRegistGuildAdventure) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfRegistGuildAdventure) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_regist_guild_cooking.go b/network/mhfpacket/msg_mhf_regist_guild_cooking.go new file mode 100644 index 000000000..275080668 --- /dev/null +++ b/network/mhfpacket/msg_mhf_regist_guild_cooking.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfRegistGuildCooking represents the MSG_MHF_REGIST_GUILD_COOKING +type MsgMhfRegistGuildCooking struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfRegistGuildCooking) Opcode() network.PacketID { + return network.MSG_MHF_REGIST_GUILD_COOKING +} + +// Parse parses the packet from binary +func (m *MsgMhfRegistGuildCooking) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfRegistGuildCooking) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_regist_guild_tresure.go b/network/mhfpacket/msg_mhf_regist_guild_tresure.go new file mode 100644 index 000000000..1df88cb1e --- /dev/null +++ b/network/mhfpacket/msg_mhf_regist_guild_tresure.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfRegistGuildTresure represents the MSG_MHF_REGIST_GUILD_TRESURE +type MsgMhfRegistGuildTresure struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfRegistGuildTresure) Opcode() network.PacketID { + return network.MSG_MHF_REGIST_GUILD_TRESURE +} + +// Parse parses the packet from binary +func (m *MsgMhfRegistGuildTresure) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfRegistGuildTresure) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_regist_spabi_time.go b/network/mhfpacket/msg_mhf_regist_spabi_time.go new file mode 100644 index 000000000..b16b4a46c --- /dev/null +++ b/network/mhfpacket/msg_mhf_regist_spabi_time.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfRegistSpabiTime represents the MSG_MHF_REGIST_SPABI_TIME +type MsgMhfRegistSpabiTime struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfRegistSpabiTime) Opcode() network.PacketID { + return network.MSG_MHF_REGIST_SPABI_TIME +} + +// Parse parses the packet from binary +func (m *MsgMhfRegistSpabiTime) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfRegistSpabiTime) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_register_event.go b/network/mhfpacket/msg_mhf_register_event.go new file mode 100644 index 000000000..98c9d9047 --- /dev/null +++ b/network/mhfpacket/msg_mhf_register_event.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfRegisterEvent represents the MSG_MHF_REGISTER_EVENT +type MsgMhfRegisterEvent struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfRegisterEvent) Opcode() network.PacketID { + return network.MSG_MHF_REGISTER_EVENT +} + +// Parse parses the packet from binary +func (m *MsgMhfRegisterEvent) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfRegisterEvent) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_release_event.go b/network/mhfpacket/msg_mhf_release_event.go new file mode 100644 index 000000000..41d3c2c7c --- /dev/null +++ b/network/mhfpacket/msg_mhf_release_event.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReleaseEvent represents the MSG_MHF_RELEASE_EVENT +type MsgMhfReleaseEvent struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReleaseEvent) Opcode() network.PacketID { + return network.MSG_MHF_RELEASE_EVENT +} + +// Parse parses the packet from binary +func (m *MsgMhfReleaseEvent) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReleaseEvent) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_reserve010f.go b/network/mhfpacket/msg_mhf_reserve010f.go new file mode 100644 index 000000000..4788603e5 --- /dev/null +++ b/network/mhfpacket/msg_mhf_reserve010f.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfReserve010F represents the MSG_MHF_reserve010F +type MsgMhfReserve010F struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfReserve010F) Opcode() network.PacketID { + return network.MSG_MHF_reserve010F +} + +// Parse parses the packet from binary +func (m *MsgMhfReserve010F) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfReserve010F) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_reset_achievement.go b/network/mhfpacket/msg_mhf_reset_achievement.go new file mode 100644 index 000000000..6ee53a3b9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_reset_achievement.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfResetAchievement represents the MSG_MHF_RESET_ACHIEVEMENT +type MsgMhfResetAchievement struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfResetAchievement) Opcode() network.PacketID { + return network.MSG_MHF_RESET_ACHIEVEMENT +} + +// Parse parses the packet from binary +func (m *MsgMhfResetAchievement) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfResetAchievement) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_reset_box_gacha_info.go b/network/mhfpacket/msg_mhf_reset_box_gacha_info.go new file mode 100644 index 000000000..261741340 --- /dev/null +++ b/network/mhfpacket/msg_mhf_reset_box_gacha_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfResetBoxGachaInfo represents the MSG_MHF_RESET_BOX_GACHA_INFO +type MsgMhfResetBoxGachaInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfResetBoxGachaInfo) Opcode() network.PacketID { + return network.MSG_MHF_RESET_BOX_GACHA_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfResetBoxGachaInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfResetBoxGachaInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_reset_title.go b/network/mhfpacket/msg_mhf_reset_title.go new file mode 100644 index 000000000..2d8172df8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_reset_title.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfResetTitle represents the MSG_MHF_RESET_TITLE +type MsgMhfResetTitle struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfResetTitle) Opcode() network.PacketID { + return network.MSG_MHF_RESET_TITLE +} + +// Parse parses the packet from binary +func (m *MsgMhfResetTitle) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfResetTitle) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_deco_myset.go b/network/mhfpacket/msg_mhf_save_deco_myset.go new file mode 100644 index 000000000..60e9a42a8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_deco_myset.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveDecoMyset represents the MSG_MHF_SAVE_DECO_MYSET +type MsgMhfSaveDecoMyset struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveDecoMyset) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_DECO_MYSET +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveDecoMyset) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveDecoMyset) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_favorite_quest.go b/network/mhfpacket/msg_mhf_save_favorite_quest.go new file mode 100644 index 000000000..92abf544f --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_favorite_quest.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveFavoriteQuest represents the MSG_MHF_SAVE_FAVORITE_QUEST +type MsgMhfSaveFavoriteQuest struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveFavoriteQuest) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_FAVORITE_QUEST +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveFavoriteQuest) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveFavoriteQuest) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_hunter_navi.go b/network/mhfpacket/msg_mhf_save_hunter_navi.go new file mode 100644 index 000000000..d62f39254 --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_hunter_navi.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveHunterNavi represents the MSG_MHF_SAVE_HUNTER_NAVI +type MsgMhfSaveHunterNavi struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveHunterNavi) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_HUNTER_NAVI +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveHunterNavi) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveHunterNavi) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_mercenary.go b/network/mhfpacket/msg_mhf_save_mercenary.go new file mode 100644 index 000000000..04c88e3ae --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_mercenary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveMercenary represents the MSG_MHF_SAVE_MERCENARY +type MsgMhfSaveMercenary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveMercenary) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_MERCENARY +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveMercenary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveMercenary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_mezfes_data.go b/network/mhfpacket/msg_mhf_save_mezfes_data.go new file mode 100644 index 000000000..0c7daa000 --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_mezfes_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveMezfesData represents the MSG_MHF_SAVE_MEZFES_DATA +type MsgMhfSaveMezfesData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveMezfesData) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_MEZFES_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveMezfesData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveMezfesData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_otomo_airou.go b/network/mhfpacket/msg_mhf_save_otomo_airou.go new file mode 100644 index 000000000..f232c8479 --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_otomo_airou.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveOtomoAirou represents the MSG_MHF_SAVE_OTOMO_AIROU +type MsgMhfSaveOtomoAirou struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveOtomoAirou) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_OTOMO_AIROU +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveOtomoAirou) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveOtomoAirou) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_partner.go b/network/mhfpacket/msg_mhf_save_partner.go new file mode 100644 index 000000000..0bdb84b8c --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_partner.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSavePartner represents the MSG_MHF_SAVE_PARTNER +type MsgMhfSavePartner struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSavePartner) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_PARTNER +} + +// Parse parses the packet from binary +func (m *MsgMhfSavePartner) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSavePartner) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_plate_box.go b/network/mhfpacket/msg_mhf_save_plate_box.go new file mode 100644 index 000000000..85362400f --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_plate_box.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSavePlateBox represents the MSG_MHF_SAVE_PLATE_BOX +type MsgMhfSavePlateBox struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSavePlateBox) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_PLATE_BOX +} + +// Parse parses the packet from binary +func (m *MsgMhfSavePlateBox) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSavePlateBox) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_plate_data.go b/network/mhfpacket/msg_mhf_save_plate_data.go new file mode 100644 index 000000000..aa4b8ddbf --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_plate_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSavePlateData represents the MSG_MHF_SAVE_PLATE_DATA +type MsgMhfSavePlateData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSavePlateData) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_PLATE_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfSavePlateData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSavePlateData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_plate_myset.go b/network/mhfpacket/msg_mhf_save_plate_myset.go new file mode 100644 index 000000000..7f87017b9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_plate_myset.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSavePlateMyset represents the MSG_MHF_SAVE_PLATE_MYSET +type MsgMhfSavePlateMyset struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSavePlateMyset) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_PLATE_MYSET +} + +// Parse parses the packet from binary +func (m *MsgMhfSavePlateMyset) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSavePlateMyset) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_rengoku_data.go b/network/mhfpacket/msg_mhf_save_rengoku_data.go new file mode 100644 index 000000000..eb7fc5cbd --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_rengoku_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveRengokuData represents the MSG_MHF_SAVE_RENGOKU_DATA +type MsgMhfSaveRengokuData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveRengokuData) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_RENGOKU_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveRengokuData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveRengokuData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_save_scenario_data.go b/network/mhfpacket/msg_mhf_save_scenario_data.go new file mode 100644 index 000000000..6b4ce46a9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_save_scenario_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSaveScenarioData represents the MSG_MHF_SAVE_SCENARIO_DATA +type MsgMhfSaveScenarioData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSaveScenarioData) Opcode() network.PacketID { + return network.MSG_MHF_SAVE_SCENARIO_DATA +} + +// Parse parses the packet from binary +func (m *MsgMhfSaveScenarioData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSaveScenarioData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_savedata.go b/network/mhfpacket/msg_mhf_savedata.go new file mode 100644 index 000000000..76ca02722 --- /dev/null +++ b/network/mhfpacket/msg_mhf_savedata.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSavedata represents the MSG_MHF_SAVEDATA +type MsgMhfSavedata struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSavedata) Opcode() network.PacketID { + return network.MSG_MHF_SAVEDATA +} + +// Parse parses the packet from binary +func (m *MsgMhfSavedata) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSavedata) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_send_mail.go b/network/mhfpacket/msg_mhf_send_mail.go new file mode 100644 index 000000000..b1fdb7b9f --- /dev/null +++ b/network/mhfpacket/msg_mhf_send_mail.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSendMail represents the MSG_MHF_SEND_MAIL +type MsgMhfSendMail struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSendMail) Opcode() network.PacketID { + return network.MSG_MHF_SEND_MAIL +} + +// Parse parses the packet from binary +func (m *MsgMhfSendMail) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSendMail) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_server_command.go b/network/mhfpacket/msg_mhf_server_command.go new file mode 100644 index 000000000..ca584419f --- /dev/null +++ b/network/mhfpacket/msg_mhf_server_command.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfServerCommand represents the MSG_MHF_SERVER_COMMAND +type MsgMhfServerCommand struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfServerCommand) Opcode() network.PacketID { + return network.MSG_MHF_SERVER_COMMAND +} + +// Parse parses the packet from binary +func (m *MsgMhfServerCommand) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfServerCommand) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_ca_achievement.go b/network/mhfpacket/msg_mhf_set_ca_achievement.go new file mode 100644 index 000000000..62790deed --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_ca_achievement.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetCaAchievement represents the MSG_MHF_SET_CA_ACHIEVEMENT +type MsgMhfSetCaAchievement struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetCaAchievement) Opcode() network.PacketID { + return network.MSG_MHF_SET_CA_ACHIEVEMENT +} + +// Parse parses the packet from binary +func (m *MsgMhfSetCaAchievement) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetCaAchievement) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_ca_achievement_hist.go b/network/mhfpacket/msg_mhf_set_ca_achievement_hist.go new file mode 100644 index 000000000..660f89c18 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_ca_achievement_hist.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetCaAchievementHist represents the MSG_MHF_SET_CA_ACHIEVEMENT_HIST +type MsgMhfSetCaAchievementHist struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetCaAchievementHist) Opcode() network.PacketID { + return network.MSG_MHF_SET_CA_ACHIEVEMENT_HIST +} + +// Parse parses the packet from binary +func (m *MsgMhfSetCaAchievementHist) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetCaAchievementHist) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_daily_mission_personal.go b/network/mhfpacket/msg_mhf_set_daily_mission_personal.go new file mode 100644 index 000000000..877c42617 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_daily_mission_personal.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetDailyMissionPersonal represents the MSG_MHF_SET_DAILY_MISSION_PERSONAL +type MsgMhfSetDailyMissionPersonal struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetDailyMissionPersonal) Opcode() network.PacketID { + return network.MSG_MHF_SET_DAILY_MISSION_PERSONAL +} + +// Parse parses the packet from binary +func (m *MsgMhfSetDailyMissionPersonal) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetDailyMissionPersonal) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_enhanced_minidata.go b/network/mhfpacket/msg_mhf_set_enhanced_minidata.go new file mode 100644 index 000000000..cae548e7c --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_enhanced_minidata.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetEnhancedMinidata represents the MSG_MHF_SET_ENHANCED_MINIDATA +type MsgMhfSetEnhancedMinidata struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetEnhancedMinidata) Opcode() network.PacketID { + return network.MSG_MHF_SET_ENHANCED_MINIDATA +} + +// Parse parses the packet from binary +func (m *MsgMhfSetEnhancedMinidata) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetEnhancedMinidata) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_guild_manage_right.go b/network/mhfpacket/msg_mhf_set_guild_manage_right.go new file mode 100644 index 000000000..91f1a94d8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_guild_manage_right.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetGuildManageRight represents the MSG_MHF_SET_GUILD_MANAGE_RIGHT +type MsgMhfSetGuildManageRight struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetGuildManageRight) Opcode() network.PacketID { + return network.MSG_MHF_SET_GUILD_MANAGE_RIGHT +} + +// Parse parses the packet from binary +func (m *MsgMhfSetGuildManageRight) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetGuildManageRight) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_guild_mission_target.go b/network/mhfpacket/msg_mhf_set_guild_mission_target.go new file mode 100644 index 000000000..25b8cf852 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_guild_mission_target.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetGuildMissionTarget represents the MSG_MHF_SET_GUILD_MISSION_TARGET +type MsgMhfSetGuildMissionTarget struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetGuildMissionTarget) Opcode() network.PacketID { + return network.MSG_MHF_SET_GUILD_MISSION_TARGET +} + +// Parse parses the packet from binary +func (m *MsgMhfSetGuildMissionTarget) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetGuildMissionTarget) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_kiju.go b/network/mhfpacket/msg_mhf_set_kiju.go new file mode 100644 index 000000000..18308cc52 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_kiju.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetKiju represents the MSG_MHF_SET_KIJU +type MsgMhfSetKiju struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetKiju) Opcode() network.PacketID { + return network.MSG_MHF_SET_KIJU +} + +// Parse parses the packet from binary +func (m *MsgMhfSetKiju) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetKiju) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_loginwindow.go b/network/mhfpacket/msg_mhf_set_loginwindow.go new file mode 100644 index 000000000..64a9d7f42 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_loginwindow.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetLoginwindow represents the MSG_MHF_SET_LOGINWINDOW +type MsgMhfSetLoginwindow struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetLoginwindow) Opcode() network.PacketID { + return network.MSG_MHF_SET_LOGINWINDOW +} + +// Parse parses the packet from binary +func (m *MsgMhfSetLoginwindow) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetLoginwindow) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_reject_guild_scout.go b/network/mhfpacket/msg_mhf_set_reject_guild_scout.go new file mode 100644 index 000000000..f2d59f3d0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_reject_guild_scout.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetRejectGuildScout represents the MSG_MHF_SET_REJECT_GUILD_SCOUT +type MsgMhfSetRejectGuildScout struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetRejectGuildScout) Opcode() network.PacketID { + return network.MSG_MHF_SET_REJECT_GUILD_SCOUT +} + +// Parse parses the packet from binary +func (m *MsgMhfSetRejectGuildScout) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetRejectGuildScout) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_restriction_event.go b/network/mhfpacket/msg_mhf_set_restriction_event.go new file mode 100644 index 000000000..a616960a7 --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_restriction_event.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetRestrictionEvent represents the MSG_MHF_SET_RESTRICTION_EVENT +type MsgMhfSetRestrictionEvent struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetRestrictionEvent) Opcode() network.PacketID { + return network.MSG_MHF_SET_RESTRICTION_EVENT +} + +// Parse parses the packet from binary +func (m *MsgMhfSetRestrictionEvent) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetRestrictionEvent) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_set_ud_tactics_follower.go b/network/mhfpacket/msg_mhf_set_ud_tactics_follower.go new file mode 100644 index 000000000..3f37d698e --- /dev/null +++ b/network/mhfpacket/msg_mhf_set_ud_tactics_follower.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSetUdTacticsFollower represents the MSG_MHF_SET_UD_TACTICS_FOLLOWER +type MsgMhfSetUdTacticsFollower struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSetUdTacticsFollower) Opcode() network.PacketID { + return network.MSG_MHF_SET_UD_TACTICS_FOLLOWER +} + +// Parse parses the packet from binary +func (m *MsgMhfSetUdTacticsFollower) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSetUdTacticsFollower) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_sex_changer.go b/network/mhfpacket/msg_mhf_sex_changer.go new file mode 100644 index 000000000..5ede1d186 --- /dev/null +++ b/network/mhfpacket/msg_mhf_sex_changer.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfSexChanger represents the MSG_MHF_SEX_CHANGER +type MsgMhfSexChanger struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfSexChanger) Opcode() network.PacketID { + return network.MSG_MHF_SEX_CHANGER +} + +// Parse parses the packet from binary +func (m *MsgMhfSexChanger) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfSexChanger) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_shut_client.go b/network/mhfpacket/msg_mhf_shut_client.go new file mode 100644 index 000000000..4953581f8 --- /dev/null +++ b/network/mhfpacket/msg_mhf_shut_client.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfShutClient represents the MSG_MHF_SHUT_CLIENT +type MsgMhfShutClient struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfShutClient) Opcode() network.PacketID { + return network.MSG_MHF_SHUT_CLIENT +} + +// Parse parses the packet from binary +func (m *MsgMhfShutClient) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfShutClient) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_stampcard_prize.go b/network/mhfpacket/msg_mhf_stampcard_prize.go new file mode 100644 index 000000000..bc6096f34 --- /dev/null +++ b/network/mhfpacket/msg_mhf_stampcard_prize.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfStampcardPrize represents the MSG_MHF_STAMPCARD_PRIZE +type MsgMhfStampcardPrize struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfStampcardPrize) Opcode() network.PacketID { + return network.MSG_MHF_STAMPCARD_PRIZE +} + +// Parse parses the packet from binary +func (m *MsgMhfStampcardPrize) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfStampcardPrize) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_stampcard_stamp.go b/network/mhfpacket/msg_mhf_stampcard_stamp.go new file mode 100644 index 000000000..ec3c401e4 --- /dev/null +++ b/network/mhfpacket/msg_mhf_stampcard_stamp.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfStampcardStamp represents the MSG_MHF_STAMPCARD_STAMP +type MsgMhfStampcardStamp struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfStampcardStamp) Opcode() network.PacketID { + return network.MSG_MHF_STAMPCARD_STAMP +} + +// Parse parses the packet from binary +func (m *MsgMhfStampcardStamp) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfStampcardStamp) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_start_boost_time.go b/network/mhfpacket/msg_mhf_start_boost_time.go new file mode 100644 index 000000000..aa6936ac3 --- /dev/null +++ b/network/mhfpacket/msg_mhf_start_boost_time.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfStartBoostTime represents the MSG_MHF_START_BOOST_TIME +type MsgMhfStartBoostTime struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfStartBoostTime) Opcode() network.PacketID { + return network.MSG_MHF_START_BOOST_TIME +} + +// Parse parses the packet from binary +func (m *MsgMhfStartBoostTime) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfStartBoostTime) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_state_campaign.go b/network/mhfpacket/msg_mhf_state_campaign.go new file mode 100644 index 000000000..c18be8433 --- /dev/null +++ b/network/mhfpacket/msg_mhf_state_campaign.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfStateCampaign represents the MSG_MHF_STATE_CAMPAIGN +type MsgMhfStateCampaign struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfStateCampaign) Opcode() network.PacketID { + return network.MSG_MHF_STATE_CAMPAIGN +} + +// Parse parses the packet from binary +func (m *MsgMhfStateCampaign) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfStateCampaign) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_state_festa_g.go b/network/mhfpacket/msg_mhf_state_festa_g.go new file mode 100644 index 000000000..ba5d7158f --- /dev/null +++ b/network/mhfpacket/msg_mhf_state_festa_g.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfStateFestaG represents the MSG_MHF_STATE_FESTA_G +type MsgMhfStateFestaG struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfStateFestaG) Opcode() network.PacketID { + return network.MSG_MHF_STATE_FESTA_G +} + +// Parse parses the packet from binary +func (m *MsgMhfStateFestaG) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfStateFestaG) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_state_festa_u.go b/network/mhfpacket/msg_mhf_state_festa_u.go new file mode 100644 index 000000000..f4fed62b0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_state_festa_u.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfStateFestaU represents the MSG_MHF_STATE_FESTA_U +type MsgMhfStateFestaU struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfStateFestaU) Opcode() network.PacketID { + return network.MSG_MHF_STATE_FESTA_U +} + +// Parse parses the packet from binary +func (m *MsgMhfStateFestaU) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfStateFestaU) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_transfer_item.go b/network/mhfpacket/msg_mhf_transfer_item.go new file mode 100644 index 000000000..a3a957271 --- /dev/null +++ b/network/mhfpacket/msg_mhf_transfer_item.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfTransferItem represents the MSG_MHF_TRANSFER_ITEM +type MsgMhfTransferItem struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfTransferItem) Opcode() network.PacketID { + return network.MSG_MHF_TRANSFER_ITEM +} + +// Parse parses the packet from binary +func (m *MsgMhfTransferItem) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfTransferItem) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_transit_message.go b/network/mhfpacket/msg_mhf_transit_message.go new file mode 100644 index 000000000..edcbeedf0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_transit_message.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfTransitMessage represents the MSG_MHF_TRANSIT_MESSAGE +type MsgMhfTransitMessage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfTransitMessage) Opcode() network.PacketID { + return network.MSG_MHF_TRANSIT_MESSAGE +} + +// Parse parses the packet from binary +func (m *MsgMhfTransitMessage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfTransitMessage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_unreserve_srg.go b/network/mhfpacket/msg_mhf_unreserve_srg.go new file mode 100644 index 000000000..e45427312 --- /dev/null +++ b/network/mhfpacket/msg_mhf_unreserve_srg.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUnreserveSrg represents the MSG_MHF_UNRESERVE_SRG +type MsgMhfUnreserveSrg struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUnreserveSrg) Opcode() network.PacketID { + return network.MSG_MHF_UNRESERVE_SRG +} + +// Parse parses the packet from binary +func (m *MsgMhfUnreserveSrg) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUnreserveSrg) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_beat_level.go b/network/mhfpacket/msg_mhf_update_beat_level.go new file mode 100644 index 000000000..534d71278 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_beat_level.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateBeatLevel represents the MSG_MHF_UPDATE_BEAT_LEVEL +type MsgMhfUpdateBeatLevel struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateBeatLevel) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_BEAT_LEVEL +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateBeatLevel) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateBeatLevel) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_cafepoint.go b/network/mhfpacket/msg_mhf_update_cafepoint.go new file mode 100644 index 000000000..4cc9d4d1a --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_cafepoint.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateCafepoint represents the MSG_MHF_UPDATE_CAFEPOINT +type MsgMhfUpdateCafepoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateCafepoint) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_CAFEPOINT +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateCafepoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateCafepoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_equip_skin_hist.go b/network/mhfpacket/msg_mhf_update_equip_skin_hist.go new file mode 100644 index 000000000..cea63b767 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_equip_skin_hist.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateEquipSkinHist represents the MSG_MHF_UPDATE_EQUIP_SKIN_HIST +type MsgMhfUpdateEquipSkinHist struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateEquipSkinHist) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_EQUIP_SKIN_HIST +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateEquipSkinHist) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateEquipSkinHist) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_etc_point.go b/network/mhfpacket/msg_mhf_update_etc_point.go new file mode 100644 index 000000000..6e7093be0 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_etc_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateEtcPoint represents the MSG_MHF_UPDATE_ETC_POINT +type MsgMhfUpdateEtcPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateEtcPoint) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_ETC_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateEtcPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateEtcPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_force_guild_rank.go b/network/mhfpacket/msg_mhf_update_force_guild_rank.go new file mode 100644 index 000000000..539fe45d9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_force_guild_rank.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateForceGuildRank represents the MSG_MHF_UPDATE_FORCE_GUILD_RANK +type MsgMhfUpdateForceGuildRank struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateForceGuildRank) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_FORCE_GUILD_RANK +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateForceGuildRank) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateForceGuildRank) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_guacot.go b/network/mhfpacket/msg_mhf_update_guacot.go new file mode 100644 index 000000000..884e4e794 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_guacot.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateGuacot represents the MSG_MHF_UPDATE_GUACOT +type MsgMhfUpdateGuacot struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateGuacot) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_GUACOT +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateGuacot) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateGuacot) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_guild.go b/network/mhfpacket/msg_mhf_update_guild.go new file mode 100644 index 000000000..fa24f19aa --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_guild.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateGuild represents the MSG_MHF_UPDATE_GUILD +type MsgMhfUpdateGuild struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateGuild) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_GUILD +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateGuild) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateGuild) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_guild_icon.go b/network/mhfpacket/msg_mhf_update_guild_icon.go new file mode 100644 index 000000000..390a1e31d --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_guild_icon.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateGuildIcon represents the MSG_MHF_UPDATE_GUILD_ICON +type MsgMhfUpdateGuildIcon struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateGuildIcon) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_GUILD_ICON +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateGuildIcon) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateGuildIcon) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_guild_item.go b/network/mhfpacket/msg_mhf_update_guild_item.go new file mode 100644 index 000000000..882d5795b --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_guild_item.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateGuildItem represents the MSG_MHF_UPDATE_GUILD_ITEM +type MsgMhfUpdateGuildItem struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateGuildItem) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_GUILD_ITEM +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateGuildItem) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateGuildItem) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_guildcard.go b/network/mhfpacket/msg_mhf_update_guildcard.go new file mode 100644 index 000000000..80e08b3e9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_guildcard.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateGuildcard represents the MSG_MHF_UPDATE_GUILDCARD +type MsgMhfUpdateGuildcard struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateGuildcard) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_GUILDCARD +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateGuildcard) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateGuildcard) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_house.go b/network/mhfpacket/msg_mhf_update_house.go new file mode 100644 index 000000000..d1f596c4b --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_house.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateHouse represents the MSG_MHF_UPDATE_HOUSE +type MsgMhfUpdateHouse struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateHouse) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_HOUSE +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateHouse) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateHouse) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_interior.go b/network/mhfpacket/msg_mhf_update_interior.go new file mode 100644 index 000000000..95425939e --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_interior.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateInterior represents the MSG_MHF_UPDATE_INTERIOR +type MsgMhfUpdateInterior struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateInterior) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_INTERIOR +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateInterior) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateInterior) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_myhouse_info.go b/network/mhfpacket/msg_mhf_update_myhouse_info.go new file mode 100644 index 000000000..4faf72405 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_myhouse_info.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateMyhouseInfo represents the MSG_MHF_UPDATE_MYHOUSE_INFO +type MsgMhfUpdateMyhouseInfo struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateMyhouseInfo) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_MYHOUSE_INFO +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateMyhouseInfo) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateMyhouseInfo) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_union_item.go b/network/mhfpacket/msg_mhf_update_union_item.go new file mode 100644 index 000000000..b8562d50f --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_union_item.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateUnionItem represents the MSG_MHF_UPDATE_UNION_ITEM +type MsgMhfUpdateUnionItem struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateUnionItem) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_UNION_ITEM +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateUnionItem) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateUnionItem) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_use_trend_weapon_log.go b/network/mhfpacket/msg_mhf_update_use_trend_weapon_log.go new file mode 100644 index 000000000..35bc9d1ca --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_use_trend_weapon_log.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateUseTrendWeaponLog represents the MSG_MHF_UPDATE_USE_TREND_WEAPON_LOG +type MsgMhfUpdateUseTrendWeaponLog struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateUseTrendWeaponLog) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_USE_TREND_WEAPON_LOG +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateUseTrendWeaponLog) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateUseTrendWeaponLog) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_update_warehouse.go b/network/mhfpacket/msg_mhf_update_warehouse.go new file mode 100644 index 000000000..82e1f33f1 --- /dev/null +++ b/network/mhfpacket/msg_mhf_update_warehouse.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUpdateWarehouse represents the MSG_MHF_UPDATE_WAREHOUSE +type MsgMhfUpdateWarehouse struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUpdateWarehouse) Opcode() network.PacketID { + return network.MSG_MHF_UPDATE_WAREHOUSE +} + +// Parse parses the packet from binary +func (m *MsgMhfUpdateWarehouse) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUpdateWarehouse) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_use_gacha_point.go b/network/mhfpacket/msg_mhf_use_gacha_point.go new file mode 100644 index 000000000..58b265a32 --- /dev/null +++ b/network/mhfpacket/msg_mhf_use_gacha_point.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUseGachaPoint represents the MSG_MHF_USE_GACHA_POINT +type MsgMhfUseGachaPoint struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUseGachaPoint) Opcode() network.PacketID { + return network.MSG_MHF_USE_GACHA_POINT +} + +// Parse parses the packet from binary +func (m *MsgMhfUseGachaPoint) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUseGachaPoint) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_use_keep_login_boost.go b/network/mhfpacket/msg_mhf_use_keep_login_boost.go new file mode 100644 index 000000000..21f714c57 --- /dev/null +++ b/network/mhfpacket/msg_mhf_use_keep_login_boost.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUseKeepLoginBoost represents the MSG_MHF_USE_KEEP_LOGIN_BOOST +type MsgMhfUseKeepLoginBoost struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUseKeepLoginBoost) Opcode() network.PacketID { + return network.MSG_MHF_USE_KEEP_LOGIN_BOOST +} + +// Parse parses the packet from binary +func (m *MsgMhfUseKeepLoginBoost) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUseKeepLoginBoost) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_use_reward_song.go b/network/mhfpacket/msg_mhf_use_reward_song.go new file mode 100644 index 000000000..dd75ac3e9 --- /dev/null +++ b/network/mhfpacket/msg_mhf_use_reward_song.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUseRewardSong represents the MSG_MHF_USE_REWARD_SONG +type MsgMhfUseRewardSong struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUseRewardSong) Opcode() network.PacketID { + return network.MSG_MHF_USE_REWARD_SONG +} + +// Parse parses the packet from binary +func (m *MsgMhfUseRewardSong) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUseRewardSong) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_use_ud_shop_coin.go b/network/mhfpacket/msg_mhf_use_ud_shop_coin.go new file mode 100644 index 000000000..c98c71baf --- /dev/null +++ b/network/mhfpacket/msg_mhf_use_ud_shop_coin.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfUseUdShopCoin represents the MSG_MHF_USE_UD_SHOP_COIN +type MsgMhfUseUdShopCoin struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfUseUdShopCoin) Opcode() network.PacketID { + return network.MSG_MHF_USE_UD_SHOP_COIN +} + +// Parse parses the packet from binary +func (m *MsgMhfUseUdShopCoin) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfUseUdShopCoin) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_mhf_vote_festa.go b/network/mhfpacket/msg_mhf_vote_festa.go new file mode 100644 index 000000000..4bfe118fc --- /dev/null +++ b/network/mhfpacket/msg_mhf_vote_festa.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgMhfVoteFesta represents the MSG_MHF_VOTE_FESTA +type MsgMhfVoteFesta struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgMhfVoteFesta) Opcode() network.PacketID { + return network.MSG_MHF_VOTE_FESTA +} + +// Parse parses the packet from binary +func (m *MsgMhfVoteFesta) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgMhfVoteFesta) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_ack.go b/network/mhfpacket/msg_sys_ack.go new file mode 100644 index 000000000..5e3ffe6fc --- /dev/null +++ b/network/mhfpacket/msg_sys_ack.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysAck represents the MSG_SYS_ACK +type MsgSysAck struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysAck) Opcode() network.PacketID { + return network.MSG_SYS_ACK +} + +// Parse parses the packet from binary +func (m *MsgSysAck) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysAck) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_acquire_semaphore.go b/network/mhfpacket/msg_sys_acquire_semaphore.go new file mode 100644 index 000000000..f5008c9a2 --- /dev/null +++ b/network/mhfpacket/msg_sys_acquire_semaphore.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysAcquireSemaphore represents the MSG_SYS_ACQUIRE_SEMAPHORE +type MsgSysAcquireSemaphore struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysAcquireSemaphore) Opcode() network.PacketID { + return network.MSG_SYS_ACQUIRE_SEMAPHORE +} + +// Parse parses the packet from binary +func (m *MsgSysAcquireSemaphore) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysAcquireSemaphore) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_add_object.go b/network/mhfpacket/msg_sys_add_object.go new file mode 100644 index 000000000..5f1067a56 --- /dev/null +++ b/network/mhfpacket/msg_sys_add_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysAddObject represents the MSG_SYS_ADD_OBJECT +type MsgSysAddObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysAddObject) Opcode() network.PacketID { + return network.MSG_SYS_ADD_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysAddObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysAddObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_auth_data.go b/network/mhfpacket/msg_sys_auth_data.go new file mode 100644 index 000000000..fbe203c34 --- /dev/null +++ b/network/mhfpacket/msg_sys_auth_data.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysAuthData represents the MSG_SYS_AUTH_DATA +type MsgSysAuthData struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysAuthData) Opcode() network.PacketID { + return network.MSG_SYS_AUTH_DATA +} + +// Parse parses the packet from binary +func (m *MsgSysAuthData) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysAuthData) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_auth_query.go b/network/mhfpacket/msg_sys_auth_query.go new file mode 100644 index 000000000..d86535f6b --- /dev/null +++ b/network/mhfpacket/msg_sys_auth_query.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysAuthQuery represents the MSG_SYS_AUTH_QUERY +type MsgSysAuthQuery struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysAuthQuery) Opcode() network.PacketID { + return network.MSG_SYS_AUTH_QUERY +} + +// Parse parses the packet from binary +func (m *MsgSysAuthQuery) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysAuthQuery) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_auth_terminal.go b/network/mhfpacket/msg_sys_auth_terminal.go new file mode 100644 index 000000000..b11543de9 --- /dev/null +++ b/network/mhfpacket/msg_sys_auth_terminal.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysAuthTerminal represents the MSG_SYS_AUTH_TERMINAL +type MsgSysAuthTerminal struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysAuthTerminal) Opcode() network.PacketID { + return network.MSG_SYS_AUTH_TERMINAL +} + +// Parse parses the packet from binary +func (m *MsgSysAuthTerminal) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysAuthTerminal) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_back_stage.go b/network/mhfpacket/msg_sys_back_stage.go new file mode 100644 index 000000000..3473f46da --- /dev/null +++ b/network/mhfpacket/msg_sys_back_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysBackStage represents the MSG_SYS_BACK_STAGE +type MsgSysBackStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysBackStage) Opcode() network.PacketID { + return network.MSG_SYS_BACK_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysBackStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysBackStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_cast_binary.go b/network/mhfpacket/msg_sys_cast_binary.go new file mode 100644 index 000000000..69c9a727b --- /dev/null +++ b/network/mhfpacket/msg_sys_cast_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCastBinary represents the MSG_SYS_CAST_BINARY +type MsgSysCastBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCastBinary) Opcode() network.PacketID { + return network.MSG_SYS_CAST_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysCastBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCastBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_casted_binary.go b/network/mhfpacket/msg_sys_casted_binary.go new file mode 100644 index 000000000..aeddac73c --- /dev/null +++ b/network/mhfpacket/msg_sys_casted_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCastedBinary represents the MSG_SYS_CASTED_BINARY +type MsgSysCastedBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCastedBinary) Opcode() network.PacketID { + return network.MSG_SYS_CASTED_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysCastedBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCastedBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_check_semaphore.go b/network/mhfpacket/msg_sys_check_semaphore.go new file mode 100644 index 000000000..23a0cf482 --- /dev/null +++ b/network/mhfpacket/msg_sys_check_semaphore.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCheckSemaphore represents the MSG_SYS_CHECK_SEMAPHORE +type MsgSysCheckSemaphore struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCheckSemaphore) Opcode() network.PacketID { + return network.MSG_SYS_CHECK_SEMAPHORE +} + +// Parse parses the packet from binary +func (m *MsgSysCheckSemaphore) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCheckSemaphore) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_cleanup_object.go b/network/mhfpacket/msg_sys_cleanup_object.go new file mode 100644 index 000000000..a5548cd4a --- /dev/null +++ b/network/mhfpacket/msg_sys_cleanup_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCleanupObject represents the MSG_SYS_CLEANUP_OBJECT +type MsgSysCleanupObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCleanupObject) Opcode() network.PacketID { + return network.MSG_SYS_CLEANUP_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysCleanupObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCleanupObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_close_mutex.go b/network/mhfpacket/msg_sys_close_mutex.go new file mode 100644 index 000000000..7572cb8aa --- /dev/null +++ b/network/mhfpacket/msg_sys_close_mutex.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCloseMutex represents the MSG_SYS_CLOSE_MUTEX +type MsgSysCloseMutex struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCloseMutex) Opcode() network.PacketID { + return network.MSG_SYS_CLOSE_MUTEX +} + +// Parse parses the packet from binary +func (m *MsgSysCloseMutex) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCloseMutex) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_collect_binary.go b/network/mhfpacket/msg_sys_collect_binary.go new file mode 100644 index 000000000..540913891 --- /dev/null +++ b/network/mhfpacket/msg_sys_collect_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCollectBinary represents the MSG_SYS_COLLECT_BINARY +type MsgSysCollectBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCollectBinary) Opcode() network.PacketID { + return network.MSG_SYS_COLLECT_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysCollectBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCollectBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_create_acquire_semaphore.go b/network/mhfpacket/msg_sys_create_acquire_semaphore.go new file mode 100644 index 000000000..72ae98a08 --- /dev/null +++ b/network/mhfpacket/msg_sys_create_acquire_semaphore.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCreateAcquireSemaphore represents the MSG_SYS_CREATE_ACQUIRE_SEMAPHORE +type MsgSysCreateAcquireSemaphore struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCreateAcquireSemaphore) Opcode() network.PacketID { + return network.MSG_SYS_CREATE_ACQUIRE_SEMAPHORE +} + +// Parse parses the packet from binary +func (m *MsgSysCreateAcquireSemaphore) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCreateAcquireSemaphore) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_create_mutex.go b/network/mhfpacket/msg_sys_create_mutex.go new file mode 100644 index 000000000..f8b7b8656 --- /dev/null +++ b/network/mhfpacket/msg_sys_create_mutex.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCreateMutex represents the MSG_SYS_CREATE_MUTEX +type MsgSysCreateMutex struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCreateMutex) Opcode() network.PacketID { + return network.MSG_SYS_CREATE_MUTEX +} + +// Parse parses the packet from binary +func (m *MsgSysCreateMutex) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCreateMutex) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_create_object.go b/network/mhfpacket/msg_sys_create_object.go new file mode 100644 index 000000000..42c23b337 --- /dev/null +++ b/network/mhfpacket/msg_sys_create_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCreateObject represents the MSG_SYS_CREATE_OBJECT +type MsgSysCreateObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCreateObject) Opcode() network.PacketID { + return network.MSG_SYS_CREATE_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysCreateObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCreateObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_create_open_mutex.go b/network/mhfpacket/msg_sys_create_open_mutex.go new file mode 100644 index 000000000..cbe33fa35 --- /dev/null +++ b/network/mhfpacket/msg_sys_create_open_mutex.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCreateOpenMutex represents the MSG_SYS_CREATE_OPEN_MUTEX +type MsgSysCreateOpenMutex struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCreateOpenMutex) Opcode() network.PacketID { + return network.MSG_SYS_CREATE_OPEN_MUTEX +} + +// Parse parses the packet from binary +func (m *MsgSysCreateOpenMutex) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCreateOpenMutex) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_create_semaphore.go b/network/mhfpacket/msg_sys_create_semaphore.go new file mode 100644 index 000000000..381947797 --- /dev/null +++ b/network/mhfpacket/msg_sys_create_semaphore.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCreateSemaphore represents the MSG_SYS_CREATE_SEMAPHORE +type MsgSysCreateSemaphore struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCreateSemaphore) Opcode() network.PacketID { + return network.MSG_SYS_CREATE_SEMAPHORE +} + +// Parse parses the packet from binary +func (m *MsgSysCreateSemaphore) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCreateSemaphore) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_create_stage.go b/network/mhfpacket/msg_sys_create_stage.go new file mode 100644 index 000000000..642a3c23d --- /dev/null +++ b/network/mhfpacket/msg_sys_create_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysCreateStage represents the MSG_SYS_CREATE_STAGE +type MsgSysCreateStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysCreateStage) Opcode() network.PacketID { + return network.MSG_SYS_CREATE_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysCreateStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysCreateStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_del_object.go b/network/mhfpacket/msg_sys_del_object.go new file mode 100644 index 000000000..8d235b233 --- /dev/null +++ b/network/mhfpacket/msg_sys_del_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDelObject represents the MSG_SYS_DEL_OBJECT +type MsgSysDelObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDelObject) Opcode() network.PacketID { + return network.MSG_SYS_DEL_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysDelObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDelObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_delete_mutex.go b/network/mhfpacket/msg_sys_delete_mutex.go new file mode 100644 index 000000000..a4d81bbf8 --- /dev/null +++ b/network/mhfpacket/msg_sys_delete_mutex.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDeleteMutex represents the MSG_SYS_DELETE_MUTEX +type MsgSysDeleteMutex struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDeleteMutex) Opcode() network.PacketID { + return network.MSG_SYS_DELETE_MUTEX +} + +// Parse parses the packet from binary +func (m *MsgSysDeleteMutex) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDeleteMutex) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_delete_object.go b/network/mhfpacket/msg_sys_delete_object.go new file mode 100644 index 000000000..817060e03 --- /dev/null +++ b/network/mhfpacket/msg_sys_delete_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDeleteObject represents the MSG_SYS_DELETE_OBJECT +type MsgSysDeleteObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDeleteObject) Opcode() network.PacketID { + return network.MSG_SYS_DELETE_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysDeleteObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDeleteObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_delete_semaphore.go b/network/mhfpacket/msg_sys_delete_semaphore.go new file mode 100644 index 000000000..b918e6b2e --- /dev/null +++ b/network/mhfpacket/msg_sys_delete_semaphore.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDeleteSemaphore represents the MSG_SYS_DELETE_SEMAPHORE +type MsgSysDeleteSemaphore struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDeleteSemaphore) Opcode() network.PacketID { + return network.MSG_SYS_DELETE_SEMAPHORE +} + +// Parse parses the packet from binary +func (m *MsgSysDeleteSemaphore) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDeleteSemaphore) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_delete_user.go b/network/mhfpacket/msg_sys_delete_user.go new file mode 100644 index 000000000..eccfd84b9 --- /dev/null +++ b/network/mhfpacket/msg_sys_delete_user.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDeleteUser represents the MSG_SYS_DELETE_USER +type MsgSysDeleteUser struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDeleteUser) Opcode() network.PacketID { + return network.MSG_SYS_DELETE_USER +} + +// Parse parses the packet from binary +func (m *MsgSysDeleteUser) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDeleteUser) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_disp_object.go b/network/mhfpacket/msg_sys_disp_object.go new file mode 100644 index 000000000..1da6f277f --- /dev/null +++ b/network/mhfpacket/msg_sys_disp_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDispObject represents the MSG_SYS_DISP_OBJECT +type MsgSysDispObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDispObject) Opcode() network.PacketID { + return network.MSG_SYS_DISP_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysDispObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDispObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_duplicate_object.go b/network/mhfpacket/msg_sys_duplicate_object.go new file mode 100644 index 000000000..72105acad --- /dev/null +++ b/network/mhfpacket/msg_sys_duplicate_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysDuplicateObject represents the MSG_SYS_DUPLICATE_OBJECT +type MsgSysDuplicateObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysDuplicateObject) Opcode() network.PacketID { + return network.MSG_SYS_DUPLICATE_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysDuplicateObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysDuplicateObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_echo.go b/network/mhfpacket/msg_sys_echo.go new file mode 100644 index 000000000..20e82a574 --- /dev/null +++ b/network/mhfpacket/msg_sys_echo.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEcho represents the MSG_SYS_ECHO +type MsgSysEcho struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEcho) Opcode() network.PacketID { + return network.MSG_SYS_ECHO +} + +// Parse parses the packet from binary +func (m *MsgSysEcho) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEcho) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_end.go b/network/mhfpacket/msg_sys_end.go new file mode 100644 index 000000000..a4bb2e0de --- /dev/null +++ b/network/mhfpacket/msg_sys_end.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEnd represents the MSG_SYS_END +type MsgSysEnd struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEnd) Opcode() network.PacketID { + return network.MSG_SYS_END +} + +// Parse parses the packet from binary +func (m *MsgSysEnd) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEnd) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_enter_stage.go b/network/mhfpacket/msg_sys_enter_stage.go new file mode 100644 index 000000000..8dd614b92 --- /dev/null +++ b/network/mhfpacket/msg_sys_enter_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEnterStage represents the MSG_SYS_ENTER_STAGE +type MsgSysEnterStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEnterStage) Opcode() network.PacketID { + return network.MSG_SYS_ENTER_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysEnterStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEnterStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_enumerate_client.go b/network/mhfpacket/msg_sys_enumerate_client.go new file mode 100644 index 000000000..5d3bf1e00 --- /dev/null +++ b/network/mhfpacket/msg_sys_enumerate_client.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEnumerateClient represents the MSG_SYS_ENUMERATE_CLIENT +type MsgSysEnumerateClient struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEnumerateClient) Opcode() network.PacketID { + return network.MSG_SYS_ENUMERATE_CLIENT +} + +// Parse parses the packet from binary +func (m *MsgSysEnumerateClient) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEnumerateClient) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_enumerate_stage.go b/network/mhfpacket/msg_sys_enumerate_stage.go new file mode 100644 index 000000000..65d60c02f --- /dev/null +++ b/network/mhfpacket/msg_sys_enumerate_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEnumerateStage represents the MSG_SYS_ENUMERATE_STAGE +type MsgSysEnumerateStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEnumerateStage) Opcode() network.PacketID { + return network.MSG_SYS_ENUMERATE_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysEnumerateStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEnumerateStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_enumlobby.go b/network/mhfpacket/msg_sys_enumlobby.go new file mode 100644 index 000000000..7117bb187 --- /dev/null +++ b/network/mhfpacket/msg_sys_enumlobby.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEnumlobby represents the MSG_SYS_ENUMLOBBY +type MsgSysEnumlobby struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEnumlobby) Opcode() network.PacketID { + return network.MSG_SYS_ENUMLOBBY +} + +// Parse parses the packet from binary +func (m *MsgSysEnumlobby) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEnumlobby) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_enumuser.go b/network/mhfpacket/msg_sys_enumuser.go new file mode 100644 index 000000000..e761e2308 --- /dev/null +++ b/network/mhfpacket/msg_sys_enumuser.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysEnumuser represents the MSG_SYS_ENUMUSER +type MsgSysEnumuser struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysEnumuser) Opcode() network.PacketID { + return network.MSG_SYS_ENUMUSER +} + +// Parse parses the packet from binary +func (m *MsgSysEnumuser) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysEnumuser) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_extend_threshold.go b/network/mhfpacket/msg_sys_extend_threshold.go new file mode 100644 index 000000000..f03df77e7 --- /dev/null +++ b/network/mhfpacket/msg_sys_extend_threshold.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysExtendThreshold represents the MSG_SYS_EXTEND_THRESHOLD +type MsgSysExtendThreshold struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysExtendThreshold) Opcode() network.PacketID { + return network.MSG_SYS_EXTEND_THRESHOLD +} + +// Parse parses the packet from binary +func (m *MsgSysExtendThreshold) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysExtendThreshold) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} diff --git a/network/mhfpacket/msg_sys_get_file.go b/network/mhfpacket/msg_sys_get_file.go new file mode 100644 index 000000000..30a4f0403 --- /dev/null +++ b/network/mhfpacket/msg_sys_get_file.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysGetFile represents the MSG_SYS_GET_FILE +type MsgSysGetFile struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysGetFile) Opcode() network.PacketID { + return network.MSG_SYS_GET_FILE +} + +// Parse parses the packet from binary +func (m *MsgSysGetFile) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysGetFile) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_get_object_binary.go b/network/mhfpacket/msg_sys_get_object_binary.go new file mode 100644 index 000000000..7ed1eca2c --- /dev/null +++ b/network/mhfpacket/msg_sys_get_object_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysGetObjectBinary represents the MSG_SYS_GET_OBJECT_BINARY +type MsgSysGetObjectBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysGetObjectBinary) Opcode() network.PacketID { + return network.MSG_SYS_GET_OBJECT_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysGetObjectBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysGetObjectBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_get_object_owner.go b/network/mhfpacket/msg_sys_get_object_owner.go new file mode 100644 index 000000000..6934592bd --- /dev/null +++ b/network/mhfpacket/msg_sys_get_object_owner.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysGetObjectOwner represents the MSG_SYS_GET_OBJECT_OWNER +type MsgSysGetObjectOwner struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysGetObjectOwner) Opcode() network.PacketID { + return network.MSG_SYS_GET_OBJECT_OWNER +} + +// Parse parses the packet from binary +func (m *MsgSysGetObjectOwner) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysGetObjectOwner) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_get_stage_binary.go b/network/mhfpacket/msg_sys_get_stage_binary.go new file mode 100644 index 000000000..fa21aab36 --- /dev/null +++ b/network/mhfpacket/msg_sys_get_stage_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysGetStageBinary represents the MSG_SYS_GET_STAGE_BINARY +type MsgSysGetStageBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysGetStageBinary) Opcode() network.PacketID { + return network.MSG_SYS_GET_STAGE_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysGetStageBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysGetStageBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_get_state.go b/network/mhfpacket/msg_sys_get_state.go new file mode 100644 index 000000000..cf5f53b9a --- /dev/null +++ b/network/mhfpacket/msg_sys_get_state.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysGetState represents the MSG_SYS_GET_STATE +type MsgSysGetState struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysGetState) Opcode() network.PacketID { + return network.MSG_SYS_GET_STATE +} + +// Parse parses the packet from binary +func (m *MsgSysGetState) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysGetState) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_get_user_binary.go b/network/mhfpacket/msg_sys_get_user_binary.go new file mode 100644 index 000000000..5db54bba4 --- /dev/null +++ b/network/mhfpacket/msg_sys_get_user_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysGetUserBinary represents the MSG_SYS_GET_USER_BINARY +type MsgSysGetUserBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysGetUserBinary) Opcode() network.PacketID { + return network.MSG_SYS_GET_USER_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysGetUserBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysGetUserBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_hide_client.go b/network/mhfpacket/msg_sys_hide_client.go new file mode 100644 index 000000000..95ff37edc --- /dev/null +++ b/network/mhfpacket/msg_sys_hide_client.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysHideClient represents the MSG_SYS_HIDE_CLIENT +type MsgSysHideClient struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysHideClient) Opcode() network.PacketID { + return network.MSG_SYS_HIDE_CLIENT +} + +// Parse parses the packet from binary +func (m *MsgSysHideClient) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysHideClient) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_hide_object.go b/network/mhfpacket/msg_sys_hide_object.go new file mode 100644 index 000000000..29423af65 --- /dev/null +++ b/network/mhfpacket/msg_sys_hide_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysHideObject represents the MSG_SYS_HIDE_OBJECT +type MsgSysHideObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysHideObject) Opcode() network.PacketID { + return network.MSG_SYS_HIDE_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysHideObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysHideObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_infokyserver.go b/network/mhfpacket/msg_sys_infokyserver.go new file mode 100644 index 000000000..4bc6c25fe --- /dev/null +++ b/network/mhfpacket/msg_sys_infokyserver.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysInfokyserver represents the MSG_SYS_INFOKYSERVER +type MsgSysInfokyserver struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysInfokyserver) Opcode() network.PacketID { + return network.MSG_SYS_INFOKYSERVER +} + +// Parse parses the packet from binary +func (m *MsgSysInfokyserver) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysInfokyserver) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_insert_user.go b/network/mhfpacket/msg_sys_insert_user.go new file mode 100644 index 000000000..b8aa206e6 --- /dev/null +++ b/network/mhfpacket/msg_sys_insert_user.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysInsertUser represents the MSG_SYS_INSERT_USER +type MsgSysInsertUser struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysInsertUser) Opcode() network.PacketID { + return network.MSG_SYS_INSERT_USER +} + +// Parse parses the packet from binary +func (m *MsgSysInsertUser) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysInsertUser) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_issue_logkey.go b/network/mhfpacket/msg_sys_issue_logkey.go new file mode 100644 index 000000000..b8d95ddb0 --- /dev/null +++ b/network/mhfpacket/msg_sys_issue_logkey.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysIssueLogkey represents the MSG_SYS_ISSUE_LOGKEY +type MsgSysIssueLogkey struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysIssueLogkey) Opcode() network.PacketID { + return network.MSG_SYS_ISSUE_LOGKEY +} + +// Parse parses the packet from binary +func (m *MsgSysIssueLogkey) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysIssueLogkey) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_leave_stage.go b/network/mhfpacket/msg_sys_leave_stage.go new file mode 100644 index 000000000..54546522c --- /dev/null +++ b/network/mhfpacket/msg_sys_leave_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysLeaveStage represents the MSG_SYS_LEAVE_STAGE +type MsgSysLeaveStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysLeaveStage) Opcode() network.PacketID { + return network.MSG_SYS_LEAVE_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysLeaveStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysLeaveStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_load_register.go b/network/mhfpacket/msg_sys_load_register.go new file mode 100644 index 000000000..1f8ef3997 --- /dev/null +++ b/network/mhfpacket/msg_sys_load_register.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysLoadRegister represents the MSG_SYS_LOAD_REGISTER +type MsgSysLoadRegister struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysLoadRegister) Opcode() network.PacketID { + return network.MSG_SYS_LOAD_REGISTER +} + +// Parse parses the packet from binary +func (m *MsgSysLoadRegister) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysLoadRegister) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_lock_global_sema.go b/network/mhfpacket/msg_sys_lock_global_sema.go new file mode 100644 index 000000000..76ffb6572 --- /dev/null +++ b/network/mhfpacket/msg_sys_lock_global_sema.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysLockGlobalSema represents the MSG_SYS_LOCK_GLOBAL_SEMA +type MsgSysLockGlobalSema struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysLockGlobalSema) Opcode() network.PacketID { + return network.MSG_SYS_LOCK_GLOBAL_SEMA +} + +// Parse parses the packet from binary +func (m *MsgSysLockGlobalSema) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysLockGlobalSema) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_lock_stage.go b/network/mhfpacket/msg_sys_lock_stage.go new file mode 100644 index 000000000..7968ef332 --- /dev/null +++ b/network/mhfpacket/msg_sys_lock_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysLockStage represents the MSG_SYS_LOCK_STAGE +type MsgSysLockStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysLockStage) Opcode() network.PacketID { + return network.MSG_SYS_LOCK_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysLockStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysLockStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_login.go b/network/mhfpacket/msg_sys_login.go new file mode 100644 index 000000000..5694ada16 --- /dev/null +++ b/network/mhfpacket/msg_sys_login.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysLogin represents the MSG_SYS_LOGIN +type MsgSysLogin struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysLogin) Opcode() network.PacketID { + return network.MSG_SYS_LOGIN +} + +// Parse parses the packet from binary +func (m *MsgSysLogin) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysLogin) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_logout.go b/network/mhfpacket/msg_sys_logout.go new file mode 100644 index 000000000..e0c0e2b34 --- /dev/null +++ b/network/mhfpacket/msg_sys_logout.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysLogout represents the MSG_SYS_LOGOUT +type MsgSysLogout struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysLogout) Opcode() network.PacketID { + return network.MSG_SYS_LOGOUT +} + +// Parse parses the packet from binary +func (m *MsgSysLogout) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysLogout) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_move_stage.go b/network/mhfpacket/msg_sys_move_stage.go new file mode 100644 index 000000000..57bfdb942 --- /dev/null +++ b/network/mhfpacket/msg_sys_move_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysMoveStage represents the MSG_SYS_MOVE_STAGE +type MsgSysMoveStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysMoveStage) Opcode() network.PacketID { + return network.MSG_SYS_MOVE_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysMoveStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysMoveStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_nop.go b/network/mhfpacket/msg_sys_nop.go new file mode 100644 index 000000000..1fbc18376 --- /dev/null +++ b/network/mhfpacket/msg_sys_nop.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysNop represents the MSG_SYS_NOP +type MsgSysNop struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysNop) Opcode() network.PacketID { + return network.MSG_SYS_NOP +} + +// Parse parses the packet from binary +func (m *MsgSysNop) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysNop) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_notify_register.go b/network/mhfpacket/msg_sys_notify_register.go new file mode 100644 index 000000000..66abfabe7 --- /dev/null +++ b/network/mhfpacket/msg_sys_notify_register.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysNotifyRegister represents the MSG_SYS_NOTIFY_REGISTER +type MsgSysNotifyRegister struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysNotifyRegister) Opcode() network.PacketID { + return network.MSG_SYS_NOTIFY_REGISTER +} + +// Parse parses the packet from binary +func (m *MsgSysNotifyRegister) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysNotifyRegister) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_notify_user_binary.go b/network/mhfpacket/msg_sys_notify_user_binary.go new file mode 100644 index 000000000..e4914aeef --- /dev/null +++ b/network/mhfpacket/msg_sys_notify_user_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysNotifyUserBinary represents the MSG_SYS_NOTIFY_USER_BINARY +type MsgSysNotifyUserBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysNotifyUserBinary) Opcode() network.PacketID { + return network.MSG_SYS_NOTIFY_USER_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysNotifyUserBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysNotifyUserBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_open_mutex.go b/network/mhfpacket/msg_sys_open_mutex.go new file mode 100644 index 000000000..d7cdaa40a --- /dev/null +++ b/network/mhfpacket/msg_sys_open_mutex.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysOpenMutex represents the MSG_SYS_OPEN_MUTEX +type MsgSysOpenMutex struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysOpenMutex) Opcode() network.PacketID { + return network.MSG_SYS_OPEN_MUTEX +} + +// Parse parses the packet from binary +func (m *MsgSysOpenMutex) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysOpenMutex) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_operate_register.go b/network/mhfpacket/msg_sys_operate_register.go new file mode 100644 index 000000000..e8bcf3eb1 --- /dev/null +++ b/network/mhfpacket/msg_sys_operate_register.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysOperateRegister represents the MSG_SYS_OPERATE_REGISTER +type MsgSysOperateRegister struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysOperateRegister) Opcode() network.PacketID { + return network.MSG_SYS_OPERATE_REGISTER +} + +// Parse parses the packet from binary +func (m *MsgSysOperateRegister) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysOperateRegister) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_ping.go b/network/mhfpacket/msg_sys_ping.go new file mode 100644 index 000000000..44c4fff12 --- /dev/null +++ b/network/mhfpacket/msg_sys_ping.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysPing represents the MSG_SYS_PING +type MsgSysPing struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysPing) Opcode() network.PacketID { + return network.MSG_SYS_PING +} + +// Parse parses the packet from binary +func (m *MsgSysPing) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysPing) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_position_object.go b/network/mhfpacket/msg_sys_position_object.go new file mode 100644 index 000000000..335a526d3 --- /dev/null +++ b/network/mhfpacket/msg_sys_position_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysPositionObject represents the MSG_SYS_POSITION_OBJECT +type MsgSysPositionObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysPositionObject) Opcode() network.PacketID { + return network.MSG_SYS_POSITION_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysPositionObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysPositionObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_record_log.go b/network/mhfpacket/msg_sys_record_log.go new file mode 100644 index 000000000..711a21d7d --- /dev/null +++ b/network/mhfpacket/msg_sys_record_log.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysRecordLog represents the MSG_SYS_RECORD_LOG +type MsgSysRecordLog struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysRecordLog) Opcode() network.PacketID { + return network.MSG_SYS_RECORD_LOG +} + +// Parse parses the packet from binary +func (m *MsgSysRecordLog) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysRecordLog) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_release_semaphore.go b/network/mhfpacket/msg_sys_release_semaphore.go new file mode 100644 index 000000000..f47af4043 --- /dev/null +++ b/network/mhfpacket/msg_sys_release_semaphore.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReleaseSemaphore represents the MSG_SYS_RELEASE_SEMAPHORE +type MsgSysReleaseSemaphore struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReleaseSemaphore) Opcode() network.PacketID { + return network.MSG_SYS_RELEASE_SEMAPHORE +} + +// Parse parses the packet from binary +func (m *MsgSysReleaseSemaphore) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReleaseSemaphore) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve01.go b/network/mhfpacket/msg_sys_reserve01.go new file mode 100644 index 000000000..7d55a7953 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve01.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve01 represents the MSG_SYS_reserve01 +type MsgSysReserve01 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve01) Opcode() network.PacketID { + return network.MSG_SYS_reserve01 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve01) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve01) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve02.go b/network/mhfpacket/msg_sys_reserve02.go new file mode 100644 index 000000000..40427ffa3 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve02.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve02 represents the MSG_SYS_reserve02 +type MsgSysReserve02 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve02) Opcode() network.PacketID { + return network.MSG_SYS_reserve02 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve02) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve02) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve03.go b/network/mhfpacket/msg_sys_reserve03.go new file mode 100644 index 000000000..9a57c82d5 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve03.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve03 represents the MSG_SYS_reserve03 +type MsgSysReserve03 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve03) Opcode() network.PacketID { + return network.MSG_SYS_reserve03 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve03) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve03) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve04.go b/network/mhfpacket/msg_sys_reserve04.go new file mode 100644 index 000000000..c190e22be --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve04.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve04 represents the MSG_SYS_reserve04 +type MsgSysReserve04 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve04) Opcode() network.PacketID { + return network.MSG_SYS_reserve04 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve04) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve04) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve05.go b/network/mhfpacket/msg_sys_reserve05.go new file mode 100644 index 000000000..7790260c9 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve05.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve05 represents the MSG_SYS_reserve05 +type MsgSysReserve05 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve05) Opcode() network.PacketID { + return network.MSG_SYS_reserve05 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve05) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve05) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve06.go b/network/mhfpacket/msg_sys_reserve06.go new file mode 100644 index 000000000..0368284f8 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve06.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve06 represents the MSG_SYS_reserve06 +type MsgSysReserve06 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve06) Opcode() network.PacketID { + return network.MSG_SYS_reserve06 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve06) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve06) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve07.go b/network/mhfpacket/msg_sys_reserve07.go new file mode 100644 index 000000000..f883019a0 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve07.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve07 represents the MSG_SYS_reserve07 +type MsgSysReserve07 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve07) Opcode() network.PacketID { + return network.MSG_SYS_reserve07 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve07) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve07) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve0c.go b/network/mhfpacket/msg_sys_reserve0c.go new file mode 100644 index 000000000..b0e6aada1 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve0c.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve0C represents the MSG_SYS_reserve0C +type MsgSysReserve0C struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve0C) Opcode() network.PacketID { + return network.MSG_SYS_reserve0C +} + +// Parse parses the packet from binary +func (m *MsgSysReserve0C) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve0C) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve0d.go b/network/mhfpacket/msg_sys_reserve0d.go new file mode 100644 index 000000000..64e9a89d9 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve0d.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve0D represents the MSG_SYS_reserve0D +type MsgSysReserve0D struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve0D) Opcode() network.PacketID { + return network.MSG_SYS_reserve0D +} + +// Parse parses the packet from binary +func (m *MsgSysReserve0D) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve0D) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve0e.go b/network/mhfpacket/msg_sys_reserve0e.go new file mode 100644 index 000000000..70d2c1f73 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve0e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve0E represents the MSG_SYS_reserve0E +type MsgSysReserve0E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve0E) Opcode() network.PacketID { + return network.MSG_SYS_reserve0E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve0E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve0E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve180.go b/network/mhfpacket/msg_sys_reserve180.go new file mode 100644 index 000000000..1d8a9cd58 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve180.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve180 represents the MSG_SYS_reserve180 +type MsgSysReserve180 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve180) Opcode() network.PacketID { + return network.MSG_SYS_reserve180 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve180) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve180) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve188.go b/network/mhfpacket/msg_sys_reserve188.go new file mode 100644 index 000000000..530ad4e9f --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve188.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve188 represents the MSG_SYS_reserve188 +type MsgSysReserve188 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve188) Opcode() network.PacketID { + return network.MSG_SYS_reserve188 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve188) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve188) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve18b.go b/network/mhfpacket/msg_sys_reserve18b.go new file mode 100644 index 000000000..fd9492a13 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve18b.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve18B represents the MSG_SYS_reserve18B +type MsgSysReserve18B struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve18B) Opcode() network.PacketID { + return network.MSG_SYS_reserve18B +} + +// Parse parses the packet from binary +func (m *MsgSysReserve18B) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve18B) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve18e.go b/network/mhfpacket/msg_sys_reserve18e.go new file mode 100644 index 000000000..46044017c --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve18e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve18E represents the MSG_SYS_reserve18E +type MsgSysReserve18E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve18E) Opcode() network.PacketID { + return network.MSG_SYS_reserve18E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve18E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve18E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve18f.go b/network/mhfpacket/msg_sys_reserve18f.go new file mode 100644 index 000000000..a2d047944 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve18f.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve18F represents the MSG_SYS_reserve18F +type MsgSysReserve18F struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve18F) Opcode() network.PacketID { + return network.MSG_SYS_reserve18F +} + +// Parse parses the packet from binary +func (m *MsgSysReserve18F) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve18F) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve192.go b/network/mhfpacket/msg_sys_reserve192.go new file mode 100644 index 000000000..b25136a94 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve192.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve192 represents the MSG_SYS_reserve192 +type MsgSysReserve192 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve192) Opcode() network.PacketID { + return network.MSG_SYS_reserve192 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve192) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve192) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve193.go b/network/mhfpacket/msg_sys_reserve193.go new file mode 100644 index 000000000..00e792bdf --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve193.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve193 represents the MSG_SYS_reserve193 +type MsgSysReserve193 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve193) Opcode() network.PacketID { + return network.MSG_SYS_reserve193 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve193) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve193) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve194.go b/network/mhfpacket/msg_sys_reserve194.go new file mode 100644 index 000000000..17eaf2849 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve194.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve194 represents the MSG_SYS_reserve194 +type MsgSysReserve194 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve194) Opcode() network.PacketID { + return network.MSG_SYS_reserve194 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve194) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve194) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve19b.go b/network/mhfpacket/msg_sys_reserve19b.go new file mode 100644 index 000000000..a02cbe91c --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve19b.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve19B represents the MSG_SYS_reserve19B +type MsgSysReserve19B struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve19B) Opcode() network.PacketID { + return network.MSG_SYS_reserve19B +} + +// Parse parses the packet from binary +func (m *MsgSysReserve19B) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve19B) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve19e.go b/network/mhfpacket/msg_sys_reserve19e.go new file mode 100644 index 000000000..056429031 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve19e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve19E represents the MSG_SYS_reserve19E +type MsgSysReserve19E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve19E) Opcode() network.PacketID { + return network.MSG_SYS_reserve19E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve19E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve19E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve19f.go b/network/mhfpacket/msg_sys_reserve19f.go new file mode 100644 index 000000000..7a3a16b3a --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve19f.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve19F represents the MSG_SYS_reserve19F +type MsgSysReserve19F struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve19F) Opcode() network.PacketID { + return network.MSG_SYS_reserve19F +} + +// Parse parses the packet from binary +func (m *MsgSysReserve19F) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve19F) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve202.go b/network/mhfpacket/msg_sys_reserve202.go new file mode 100644 index 000000000..752b9ef5e --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve202.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve202 represents the MSG_SYS_reserve202 +type MsgSysReserve202 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve202) Opcode() network.PacketID { + return network.MSG_SYS_reserve202 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve202) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve202) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve203.go b/network/mhfpacket/msg_sys_reserve203.go new file mode 100644 index 000000000..5059a54f2 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve203.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve203 represents the MSG_SYS_reserve203 +type MsgSysReserve203 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve203) Opcode() network.PacketID { + return network.MSG_SYS_reserve203 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve203) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve203) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve204.go b/network/mhfpacket/msg_sys_reserve204.go new file mode 100644 index 000000000..ea1a52746 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve204.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve204 represents the MSG_SYS_reserve204 +type MsgSysReserve204 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve204) Opcode() network.PacketID { + return network.MSG_SYS_reserve204 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve204) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve204) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve205.go b/network/mhfpacket/msg_sys_reserve205.go new file mode 100644 index 000000000..b754edd94 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve205.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve205 represents the MSG_SYS_reserve205 +type MsgSysReserve205 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve205) Opcode() network.PacketID { + return network.MSG_SYS_reserve205 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve205) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve205) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve206.go b/network/mhfpacket/msg_sys_reserve206.go new file mode 100644 index 000000000..ab69604b9 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve206.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve206 represents the MSG_SYS_reserve206 +type MsgSysReserve206 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve206) Opcode() network.PacketID { + return network.MSG_SYS_reserve206 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve206) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve206) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve207.go b/network/mhfpacket/msg_sys_reserve207.go new file mode 100644 index 000000000..711b5fb62 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve207.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve207 represents the MSG_SYS_reserve207 +type MsgSysReserve207 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve207) Opcode() network.PacketID { + return network.MSG_SYS_reserve207 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve207) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve207) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve208.go b/network/mhfpacket/msg_sys_reserve208.go new file mode 100644 index 000000000..5985c5514 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve208.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve208 represents the MSG_SYS_reserve208 +type MsgSysReserve208 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve208) Opcode() network.PacketID { + return network.MSG_SYS_reserve208 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve208) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve208) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve209.go b/network/mhfpacket/msg_sys_reserve209.go new file mode 100644 index 000000000..de3450666 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve209.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve209 represents the MSG_SYS_reserve209 +type MsgSysReserve209 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve209) Opcode() network.PacketID { + return network.MSG_SYS_reserve209 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve209) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve209) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve20a.go b/network/mhfpacket/msg_sys_reserve20a.go new file mode 100644 index 000000000..1f834c80a --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve20a.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve20A represents the MSG_SYS_reserve20A +type MsgSysReserve20A struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve20A) Opcode() network.PacketID { + return network.MSG_SYS_reserve20A +} + +// Parse parses the packet from binary +func (m *MsgSysReserve20A) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve20A) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve20b.go b/network/mhfpacket/msg_sys_reserve20b.go new file mode 100644 index 000000000..2e3f67171 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve20b.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve20B represents the MSG_SYS_reserve20B +type MsgSysReserve20B struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve20B) Opcode() network.PacketID { + return network.MSG_SYS_reserve20B +} + +// Parse parses the packet from binary +func (m *MsgSysReserve20B) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve20B) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve20c.go b/network/mhfpacket/msg_sys_reserve20c.go new file mode 100644 index 000000000..c7b5daef7 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve20c.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve20C represents the MSG_SYS_reserve20C +type MsgSysReserve20C struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve20C) Opcode() network.PacketID { + return network.MSG_SYS_reserve20C +} + +// Parse parses the packet from binary +func (m *MsgSysReserve20C) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve20C) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve20d.go b/network/mhfpacket/msg_sys_reserve20d.go new file mode 100644 index 000000000..82c7e545f --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve20d.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve20D represents the MSG_SYS_reserve20D +type MsgSysReserve20D struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve20D) Opcode() network.PacketID { + return network.MSG_SYS_reserve20D +} + +// Parse parses the packet from binary +func (m *MsgSysReserve20D) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve20D) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve20e.go b/network/mhfpacket/msg_sys_reserve20e.go new file mode 100644 index 000000000..ff3773056 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve20e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve20E represents the MSG_SYS_reserve20E +type MsgSysReserve20E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve20E) Opcode() network.PacketID { + return network.MSG_SYS_reserve20E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve20E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve20E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve20f.go b/network/mhfpacket/msg_sys_reserve20f.go new file mode 100644 index 000000000..4237d04ea --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve20f.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve20F represents the MSG_SYS_reserve20F +type MsgSysReserve20F struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve20F) Opcode() network.PacketID { + return network.MSG_SYS_reserve20F +} + +// Parse parses the packet from binary +func (m *MsgSysReserve20F) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve20F) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve4a.go b/network/mhfpacket/msg_sys_reserve4a.go new file mode 100644 index 000000000..337cda508 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve4a.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve4A represents the MSG_SYS_reserve4A +type MsgSysReserve4A struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve4A) Opcode() network.PacketID { + return network.MSG_SYS_reserve4A +} + +// Parse parses the packet from binary +func (m *MsgSysReserve4A) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve4A) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve4b.go b/network/mhfpacket/msg_sys_reserve4b.go new file mode 100644 index 000000000..294920e01 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve4b.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve4B represents the MSG_SYS_reserve4B +type MsgSysReserve4B struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve4B) Opcode() network.PacketID { + return network.MSG_SYS_reserve4B +} + +// Parse parses the packet from binary +func (m *MsgSysReserve4B) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve4B) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve4c.go b/network/mhfpacket/msg_sys_reserve4c.go new file mode 100644 index 000000000..0f932ee8d --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve4c.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve4C represents the MSG_SYS_reserve4C +type MsgSysReserve4C struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve4C) Opcode() network.PacketID { + return network.MSG_SYS_reserve4C +} + +// Parse parses the packet from binary +func (m *MsgSysReserve4C) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve4C) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve4d.go b/network/mhfpacket/msg_sys_reserve4d.go new file mode 100644 index 000000000..003ed1e13 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve4d.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve4D represents the MSG_SYS_reserve4D +type MsgSysReserve4D struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve4D) Opcode() network.PacketID { + return network.MSG_SYS_reserve4D +} + +// Parse parses the packet from binary +func (m *MsgSysReserve4D) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve4D) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve4e.go b/network/mhfpacket/msg_sys_reserve4e.go new file mode 100644 index 000000000..6f6c356b3 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve4e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve4E represents the MSG_SYS_reserve4E +type MsgSysReserve4E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve4E) Opcode() network.PacketID { + return network.MSG_SYS_reserve4E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve4E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve4E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve4f.go b/network/mhfpacket/msg_sys_reserve4f.go new file mode 100644 index 000000000..161b2c4b7 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve4f.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve4F represents the MSG_SYS_reserve4F +type MsgSysReserve4F struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve4F) Opcode() network.PacketID { + return network.MSG_SYS_reserve4F +} + +// Parse parses the packet from binary +func (m *MsgSysReserve4F) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve4F) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve55.go b/network/mhfpacket/msg_sys_reserve55.go new file mode 100644 index 000000000..7c9d6d7fb --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve55.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve55 represents the MSG_SYS_reserve55 +type MsgSysReserve55 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve55) Opcode() network.PacketID { + return network.MSG_SYS_reserve55 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve55) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve55) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve56.go b/network/mhfpacket/msg_sys_reserve56.go new file mode 100644 index 000000000..5d9d53ef2 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve56.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve56 represents the MSG_SYS_reserve56 +type MsgSysReserve56 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve56) Opcode() network.PacketID { + return network.MSG_SYS_reserve56 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve56) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve56) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve57.go b/network/mhfpacket/msg_sys_reserve57.go new file mode 100644 index 000000000..557d2aa00 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve57.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve57 represents the MSG_SYS_reserve57 +type MsgSysReserve57 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve57) Opcode() network.PacketID { + return network.MSG_SYS_reserve57 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve57) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve57) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve5c.go b/network/mhfpacket/msg_sys_reserve5c.go new file mode 100644 index 000000000..7b6d4b3f5 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve5c.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve5C represents the MSG_SYS_reserve5C +type MsgSysReserve5C struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve5C) Opcode() network.PacketID { + return network.MSG_SYS_reserve5C +} + +// Parse parses the packet from binary +func (m *MsgSysReserve5C) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve5C) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve5e.go b/network/mhfpacket/msg_sys_reserve5e.go new file mode 100644 index 000000000..73913a8eb --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve5e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve5E represents the MSG_SYS_reserve5E +type MsgSysReserve5E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve5E) Opcode() network.PacketID { + return network.MSG_SYS_reserve5E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve5E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve5E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve5f.go b/network/mhfpacket/msg_sys_reserve5f.go new file mode 100644 index 000000000..967aac03e --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve5f.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve5F represents the MSG_SYS_reserve5F +type MsgSysReserve5F struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve5F) Opcode() network.PacketID { + return network.MSG_SYS_reserve5F +} + +// Parse parses the packet from binary +func (m *MsgSysReserve5F) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve5F) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve71.go b/network/mhfpacket/msg_sys_reserve71.go new file mode 100644 index 000000000..d2d087b70 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve71.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve71 represents the MSG_SYS_reserve71 +type MsgSysReserve71 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve71) Opcode() network.PacketID { + return network.MSG_SYS_reserve71 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve71) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve71) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve72.go b/network/mhfpacket/msg_sys_reserve72.go new file mode 100644 index 000000000..366e31808 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve72.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve72 represents the MSG_SYS_reserve72 +type MsgSysReserve72 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve72) Opcode() network.PacketID { + return network.MSG_SYS_reserve72 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve72) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve72) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve73.go b/network/mhfpacket/msg_sys_reserve73.go new file mode 100644 index 000000000..20307487c --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve73.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve73 represents the MSG_SYS_reserve73 +type MsgSysReserve73 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve73) Opcode() network.PacketID { + return network.MSG_SYS_reserve73 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve73) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve73) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve74.go b/network/mhfpacket/msg_sys_reserve74.go new file mode 100644 index 000000000..2e9040177 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve74.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve74 represents the MSG_SYS_reserve74 +type MsgSysReserve74 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve74) Opcode() network.PacketID { + return network.MSG_SYS_reserve74 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve74) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve74) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve75.go b/network/mhfpacket/msg_sys_reserve75.go new file mode 100644 index 000000000..fb615c2ba --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve75.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve75 represents the MSG_SYS_reserve75 +type MsgSysReserve75 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve75) Opcode() network.PacketID { + return network.MSG_SYS_reserve75 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve75) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve75) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve76.go b/network/mhfpacket/msg_sys_reserve76.go new file mode 100644 index 000000000..612214649 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve76.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve76 represents the MSG_SYS_reserve76 +type MsgSysReserve76 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve76) Opcode() network.PacketID { + return network.MSG_SYS_reserve76 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve76) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve76) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve77.go b/network/mhfpacket/msg_sys_reserve77.go new file mode 100644 index 000000000..6d3516101 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve77.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve77 represents the MSG_SYS_reserve77 +type MsgSysReserve77 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve77) Opcode() network.PacketID { + return network.MSG_SYS_reserve77 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve77) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve77) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve78.go b/network/mhfpacket/msg_sys_reserve78.go new file mode 100644 index 000000000..c4f3e648d --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve78.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve78 represents the MSG_SYS_reserve78 +type MsgSysReserve78 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve78) Opcode() network.PacketID { + return network.MSG_SYS_reserve78 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve78) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve78) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve79.go b/network/mhfpacket/msg_sys_reserve79.go new file mode 100644 index 000000000..f4ecbc28f --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve79.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve79 represents the MSG_SYS_reserve79 +type MsgSysReserve79 struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve79) Opcode() network.PacketID { + return network.MSG_SYS_reserve79 +} + +// Parse parses the packet from binary +func (m *MsgSysReserve79) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve79) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve7a.go b/network/mhfpacket/msg_sys_reserve7a.go new file mode 100644 index 000000000..01838886b --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve7a.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve7A represents the MSG_SYS_reserve7A +type MsgSysReserve7A struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve7A) Opcode() network.PacketID { + return network.MSG_SYS_reserve7A +} + +// Parse parses the packet from binary +func (m *MsgSysReserve7A) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve7A) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve7b.go b/network/mhfpacket/msg_sys_reserve7b.go new file mode 100644 index 000000000..ab5c09939 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve7b.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve7B represents the MSG_SYS_reserve7B +type MsgSysReserve7B struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve7B) Opcode() network.PacketID { + return network.MSG_SYS_reserve7B +} + +// Parse parses the packet from binary +func (m *MsgSysReserve7B) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve7B) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve7c.go b/network/mhfpacket/msg_sys_reserve7c.go new file mode 100644 index 000000000..1db3899cd --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve7c.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve7C represents the MSG_SYS_reserve7C +type MsgSysReserve7C struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve7C) Opcode() network.PacketID { + return network.MSG_SYS_reserve7C +} + +// Parse parses the packet from binary +func (m *MsgSysReserve7C) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve7C) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve7e.go b/network/mhfpacket/msg_sys_reserve7e.go new file mode 100644 index 000000000..669a8b443 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve7e.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserve7E represents the MSG_SYS_reserve7E +type MsgSysReserve7E struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserve7E) Opcode() network.PacketID { + return network.MSG_SYS_reserve7E +} + +// Parse parses the packet from binary +func (m *MsgSysReserve7E) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserve7E) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_reserve_stage.go b/network/mhfpacket/msg_sys_reserve_stage.go new file mode 100644 index 000000000..daf097bd2 --- /dev/null +++ b/network/mhfpacket/msg_sys_reserve_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysReserveStage represents the MSG_SYS_RESERVE_STAGE +type MsgSysReserveStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysReserveStage) Opcode() network.PacketID { + return network.MSG_SYS_RESERVE_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysReserveStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysReserveStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_rights_reload.go b/network/mhfpacket/msg_sys_rights_reload.go new file mode 100644 index 000000000..7873026b1 --- /dev/null +++ b/network/mhfpacket/msg_sys_rights_reload.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysRightsReload represents the MSG_SYS_RIGHTS_RELOAD +type MsgSysRightsReload struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysRightsReload) Opcode() network.PacketID { + return network.MSG_SYS_RIGHTS_RELOAD +} + +// Parse parses the packet from binary +func (m *MsgSysRightsReload) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysRightsReload) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_rotate_object.go b/network/mhfpacket/msg_sys_rotate_object.go new file mode 100644 index 000000000..81a420baa --- /dev/null +++ b/network/mhfpacket/msg_sys_rotate_object.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysRotateObject represents the MSG_SYS_ROTATE_OBJECT +type MsgSysRotateObject struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysRotateObject) Opcode() network.PacketID { + return network.MSG_SYS_ROTATE_OBJECT +} + +// Parse parses the packet from binary +func (m *MsgSysRotateObject) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysRotateObject) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_serialize.go b/network/mhfpacket/msg_sys_serialize.go new file mode 100644 index 000000000..eec025002 --- /dev/null +++ b/network/mhfpacket/msg_sys_serialize.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysSerialize represents the MSG_SYS_SERIALIZE +type MsgSysSerialize struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysSerialize) Opcode() network.PacketID { + return network.MSG_SYS_SERIALIZE +} + +// Parse parses the packet from binary +func (m *MsgSysSerialize) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysSerialize) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_set_object_binary.go b/network/mhfpacket/msg_sys_set_object_binary.go new file mode 100644 index 000000000..324a7db9d --- /dev/null +++ b/network/mhfpacket/msg_sys_set_object_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysSetObjectBinary represents the MSG_SYS_SET_OBJECT_BINARY +type MsgSysSetObjectBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysSetObjectBinary) Opcode() network.PacketID { + return network.MSG_SYS_SET_OBJECT_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysSetObjectBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysSetObjectBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_set_stage_binary.go b/network/mhfpacket/msg_sys_set_stage_binary.go new file mode 100644 index 000000000..5864cba6a --- /dev/null +++ b/network/mhfpacket/msg_sys_set_stage_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysSetStageBinary represents the MSG_SYS_SET_STAGE_BINARY +type MsgSysSetStageBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysSetStageBinary) Opcode() network.PacketID { + return network.MSG_SYS_SET_STAGE_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysSetStageBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysSetStageBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_set_stage_pass.go b/network/mhfpacket/msg_sys_set_stage_pass.go new file mode 100644 index 000000000..f3de3f5f2 --- /dev/null +++ b/network/mhfpacket/msg_sys_set_stage_pass.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysSetStagePass represents the MSG_SYS_SET_STAGE_PASS +type MsgSysSetStagePass struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysSetStagePass) Opcode() network.PacketID { + return network.MSG_SYS_SET_STAGE_PASS +} + +// Parse parses the packet from binary +func (m *MsgSysSetStagePass) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysSetStagePass) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_set_status.go b/network/mhfpacket/msg_sys_set_status.go new file mode 100644 index 000000000..1f3a611a3 --- /dev/null +++ b/network/mhfpacket/msg_sys_set_status.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysSetStatus represents the MSG_SYS_SET_STATUS +type MsgSysSetStatus struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysSetStatus) Opcode() network.PacketID { + return network.MSG_SYS_SET_STATUS +} + +// Parse parses the packet from binary +func (m *MsgSysSetStatus) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysSetStatus) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_set_user_binary.go b/network/mhfpacket/msg_sys_set_user_binary.go new file mode 100644 index 000000000..8a75b0409 --- /dev/null +++ b/network/mhfpacket/msg_sys_set_user_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysSetUserBinary represents the MSG_SYS_SET_USER_BINARY +type MsgSysSetUserBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysSetUserBinary) Opcode() network.PacketID { + return network.MSG_SYS_SET_USER_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysSetUserBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysSetUserBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_stage_destruct.go b/network/mhfpacket/msg_sys_stage_destruct.go new file mode 100644 index 000000000..31b1e96b1 --- /dev/null +++ b/network/mhfpacket/msg_sys_stage_destruct.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysStageDestruct represents the MSG_SYS_STAGE_DESTRUCT +type MsgSysStageDestruct struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysStageDestruct) Opcode() network.PacketID { + return network.MSG_SYS_STAGE_DESTRUCT +} + +// Parse parses the packet from binary +func (m *MsgSysStageDestruct) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysStageDestruct) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_terminal_log.go b/network/mhfpacket/msg_sys_terminal_log.go new file mode 100644 index 000000000..c34a03a08 --- /dev/null +++ b/network/mhfpacket/msg_sys_terminal_log.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysTerminalLog represents the MSG_SYS_TERMINAL_LOG +type MsgSysTerminalLog struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysTerminalLog) Opcode() network.PacketID { + return network.MSG_SYS_TERMINAL_LOG +} + +// Parse parses the packet from binary +func (m *MsgSysTerminalLog) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysTerminalLog) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_time.go b/network/mhfpacket/msg_sys_time.go new file mode 100644 index 000000000..0f06e4b00 --- /dev/null +++ b/network/mhfpacket/msg_sys_time.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysTime represents the MSG_SYS_TIME +type MsgSysTime struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysTime) Opcode() network.PacketID { + return network.MSG_SYS_TIME +} + +// Parse parses the packet from binary +func (m *MsgSysTime) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysTime) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_trans_binary.go b/network/mhfpacket/msg_sys_trans_binary.go new file mode 100644 index 000000000..c2a9f5c7e --- /dev/null +++ b/network/mhfpacket/msg_sys_trans_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysTransBinary represents the MSG_SYS_TRANS_BINARY +type MsgSysTransBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysTransBinary) Opcode() network.PacketID { + return network.MSG_SYS_TRANS_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysTransBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysTransBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_unlock_global_sema.go b/network/mhfpacket/msg_sys_unlock_global_sema.go new file mode 100644 index 000000000..ff9702fda --- /dev/null +++ b/network/mhfpacket/msg_sys_unlock_global_sema.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysUnlockGlobalSema represents the MSG_SYS_UNLOCK_GLOBAL_SEMA +type MsgSysUnlockGlobalSema struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysUnlockGlobalSema) Opcode() network.PacketID { + return network.MSG_SYS_UNLOCK_GLOBAL_SEMA +} + +// Parse parses the packet from binary +func (m *MsgSysUnlockGlobalSema) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysUnlockGlobalSema) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_unlock_stage.go b/network/mhfpacket/msg_sys_unlock_stage.go new file mode 100644 index 000000000..043ba6ce3 --- /dev/null +++ b/network/mhfpacket/msg_sys_unlock_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysUnlockStage represents the MSG_SYS_UNLOCK_STAGE +type MsgSysUnlockStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysUnlockStage) Opcode() network.PacketID { + return network.MSG_SYS_UNLOCK_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysUnlockStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysUnlockStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_unreserve_stage.go b/network/mhfpacket/msg_sys_unreserve_stage.go new file mode 100644 index 000000000..b2d3a72fe --- /dev/null +++ b/network/mhfpacket/msg_sys_unreserve_stage.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysUnreserveStage represents the MSG_SYS_UNRESERVE_STAGE +type MsgSysUnreserveStage struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysUnreserveStage) Opcode() network.PacketID { + return network.MSG_SYS_UNRESERVE_STAGE +} + +// Parse parses the packet from binary +func (m *MsgSysUnreserveStage) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysUnreserveStage) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_update_object_binary.go b/network/mhfpacket/msg_sys_update_object_binary.go new file mode 100644 index 000000000..3c9875227 --- /dev/null +++ b/network/mhfpacket/msg_sys_update_object_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysUpdateObjectBinary represents the MSG_SYS_UPDATE_OBJECT_BINARY +type MsgSysUpdateObjectBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysUpdateObjectBinary) Opcode() network.PacketID { + return network.MSG_SYS_UPDATE_OBJECT_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysUpdateObjectBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysUpdateObjectBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_update_right.go b/network/mhfpacket/msg_sys_update_right.go new file mode 100644 index 000000000..b3d7d33e2 --- /dev/null +++ b/network/mhfpacket/msg_sys_update_right.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysUpdateRight represents the MSG_SYS_UPDATE_RIGHT +type MsgSysUpdateRight struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysUpdateRight) Opcode() network.PacketID { + return network.MSG_SYS_UPDATE_RIGHT +} + +// Parse parses the packet from binary +func (m *MsgSysUpdateRight) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysUpdateRight) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/msg_sys_wait_stage_binary.go b/network/mhfpacket/msg_sys_wait_stage_binary.go new file mode 100644 index 000000000..caa4b0f5b --- /dev/null +++ b/network/mhfpacket/msg_sys_wait_stage_binary.go @@ -0,0 +1,24 @@ +package mhfpacket + +import ( + "github.com/Andoryuuta/Erupe/network" + "github.com/Andoryuuta/byteframe" +) + +// MsgSysWaitStageBinary represents the MSG_SYS_WAIT_STAGE_BINARY +type MsgSysWaitStageBinary struct{} + +// Opcode returns the ID associated with this packet type. +func (m *MsgSysWaitStageBinary) Opcode() network.PacketID { + return network.MSG_SYS_WAIT_STAGE_BINARY +} + +// Parse parses the packet from binary +func (m *MsgSysWaitStageBinary) Parse(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} + +// Build builds a binary packet from the current data. +func (m *MsgSysWaitStageBinary) Build(bf *byteframe.ByteFrame) error { + panic("Not implemented") +} \ No newline at end of file diff --git a/network/mhfpacket/opcode_to_packet.go b/network/mhfpacket/opcode_to_packet.go new file mode 100644 index 000000000..df0453107 --- /dev/null +++ b/network/mhfpacket/opcode_to_packet.go @@ -0,0 +1,874 @@ +package mhfpacket + +import "github.com/Andoryuuta/Erupe/network" + +// MHFPacketFromOpcode gets a packet struct that fulfills the MHFPacket interface by it's opcode. +func MHFPacketFromOpcode(opcode network.PacketID) MHFPacket { + switch opcode { + case network.MSG_HEAD: + return &MsgHead{} + case network.MSG_SYS_reserve01: + return &MsgSysReserve01{} + case network.MSG_SYS_reserve02: + return &MsgSysReserve02{} + case network.MSG_SYS_reserve03: + return &MsgSysReserve03{} + case network.MSG_SYS_reserve04: + return &MsgSysReserve04{} + case network.MSG_SYS_reserve05: + return &MsgSysReserve05{} + case network.MSG_SYS_reserve06: + return &MsgSysReserve06{} + case network.MSG_SYS_reserve07: + return &MsgSysReserve07{} + case network.MSG_SYS_ADD_OBJECT: + return &MsgSysAddObject{} + case network.MSG_SYS_DEL_OBJECT: + return &MsgSysDelObject{} + case network.MSG_SYS_DISP_OBJECT: + return &MsgSysDispObject{} + case network.MSG_SYS_HIDE_OBJECT: + return &MsgSysHideObject{} + case network.MSG_SYS_reserve0C: + return &MsgSysReserve0C{} + case network.MSG_SYS_reserve0D: + return &MsgSysReserve0D{} + case network.MSG_SYS_reserve0E: + return &MsgSysReserve0E{} + case network.MSG_SYS_EXTEND_THRESHOLD: + return &MsgSysExtendThreshold{} + case network.MSG_SYS_END: + return &MsgSysEnd{} + case network.MSG_SYS_NOP: + return &MsgSysNop{} + case network.MSG_SYS_ACK: + return &MsgSysAck{} + case network.MSG_SYS_TERMINAL_LOG: + return &MsgSysTerminalLog{} + case network.MSG_SYS_LOGIN: + return &MsgSysLogin{} + case network.MSG_SYS_LOGOUT: + return &MsgSysLogout{} + case network.MSG_SYS_SET_STATUS: + return &MsgSysSetStatus{} + case network.MSG_SYS_PING: + return &MsgSysPing{} + case network.MSG_SYS_CAST_BINARY: + return &MsgSysCastBinary{} + case network.MSG_SYS_HIDE_CLIENT: + return &MsgSysHideClient{} + case network.MSG_SYS_TIME: + return &MsgSysTime{} + case network.MSG_SYS_CASTED_BINARY: + return &MsgSysCastedBinary{} + case network.MSG_SYS_GET_FILE: + return &MsgSysGetFile{} + case network.MSG_SYS_ISSUE_LOGKEY: + return &MsgSysIssueLogkey{} + case network.MSG_SYS_RECORD_LOG: + return &MsgSysRecordLog{} + case network.MSG_SYS_ECHO: + return &MsgSysEcho{} + case network.MSG_SYS_CREATE_STAGE: + return &MsgSysCreateStage{} + case network.MSG_SYS_STAGE_DESTRUCT: + return &MsgSysStageDestruct{} + case network.MSG_SYS_ENTER_STAGE: + return &MsgSysEnterStage{} + case network.MSG_SYS_BACK_STAGE: + return &MsgSysBackStage{} + case network.MSG_SYS_MOVE_STAGE: + return &MsgSysMoveStage{} + case network.MSG_SYS_LEAVE_STAGE: + return &MsgSysLeaveStage{} + case network.MSG_SYS_LOCK_STAGE: + return &MsgSysLockStage{} + case network.MSG_SYS_UNLOCK_STAGE: + return &MsgSysUnlockStage{} + case network.MSG_SYS_RESERVE_STAGE: + return &MsgSysReserveStage{} + case network.MSG_SYS_UNRESERVE_STAGE: + return &MsgSysUnreserveStage{} + case network.MSG_SYS_SET_STAGE_PASS: + return &MsgSysSetStagePass{} + case network.MSG_SYS_WAIT_STAGE_BINARY: + return &MsgSysWaitStageBinary{} + case network.MSG_SYS_SET_STAGE_BINARY: + return &MsgSysSetStageBinary{} + case network.MSG_SYS_GET_STAGE_BINARY: + return &MsgSysGetStageBinary{} + case network.MSG_SYS_ENUMERATE_CLIENT: + return &MsgSysEnumerateClient{} + case network.MSG_SYS_ENUMERATE_STAGE: + return &MsgSysEnumerateStage{} + case network.MSG_SYS_CREATE_MUTEX: + return &MsgSysCreateMutex{} + case network.MSG_SYS_CREATE_OPEN_MUTEX: + return &MsgSysCreateOpenMutex{} + case network.MSG_SYS_DELETE_MUTEX: + return &MsgSysDeleteMutex{} + case network.MSG_SYS_OPEN_MUTEX: + return &MsgSysOpenMutex{} + case network.MSG_SYS_CLOSE_MUTEX: + return &MsgSysCloseMutex{} + case network.MSG_SYS_CREATE_SEMAPHORE: + return &MsgSysCreateSemaphore{} + case network.MSG_SYS_CREATE_ACQUIRE_SEMAPHORE: + return &MsgSysCreateAcquireSemaphore{} + case network.MSG_SYS_DELETE_SEMAPHORE: + return &MsgSysDeleteSemaphore{} + case network.MSG_SYS_ACQUIRE_SEMAPHORE: + return &MsgSysAcquireSemaphore{} + case network.MSG_SYS_RELEASE_SEMAPHORE: + return &MsgSysReleaseSemaphore{} + case network.MSG_SYS_LOCK_GLOBAL_SEMA: + return &MsgSysLockGlobalSema{} + case network.MSG_SYS_UNLOCK_GLOBAL_SEMA: + return &MsgSysUnlockGlobalSema{} + case network.MSG_SYS_CHECK_SEMAPHORE: + return &MsgSysCheckSemaphore{} + case network.MSG_SYS_OPERATE_REGISTER: + return &MsgSysOperateRegister{} + case network.MSG_SYS_LOAD_REGISTER: + return &MsgSysLoadRegister{} + case network.MSG_SYS_NOTIFY_REGISTER: + return &MsgSysNotifyRegister{} + case network.MSG_SYS_CREATE_OBJECT: + return &MsgSysCreateObject{} + case network.MSG_SYS_DELETE_OBJECT: + return &MsgSysDeleteObject{} + case network.MSG_SYS_POSITION_OBJECT: + return &MsgSysPositionObject{} + case network.MSG_SYS_ROTATE_OBJECT: + return &MsgSysRotateObject{} + case network.MSG_SYS_DUPLICATE_OBJECT: + return &MsgSysDuplicateObject{} + case network.MSG_SYS_SET_OBJECT_BINARY: + return &MsgSysSetObjectBinary{} + case network.MSG_SYS_GET_OBJECT_BINARY: + return &MsgSysGetObjectBinary{} + case network.MSG_SYS_GET_OBJECT_OWNER: + return &MsgSysGetObjectOwner{} + case network.MSG_SYS_UPDATE_OBJECT_BINARY: + return &MsgSysUpdateObjectBinary{} + case network.MSG_SYS_CLEANUP_OBJECT: + return &MsgSysCleanupObject{} + case network.MSG_SYS_reserve4A: + return &MsgSysReserve4A{} + case network.MSG_SYS_reserve4B: + return &MsgSysReserve4B{} + case network.MSG_SYS_reserve4C: + return &MsgSysReserve4C{} + case network.MSG_SYS_reserve4D: + return &MsgSysReserve4D{} + case network.MSG_SYS_reserve4E: + return &MsgSysReserve4E{} + case network.MSG_SYS_reserve4F: + return &MsgSysReserve4F{} + case network.MSG_SYS_INSERT_USER: + return &MsgSysInsertUser{} + case network.MSG_SYS_DELETE_USER: + return &MsgSysDeleteUser{} + case network.MSG_SYS_SET_USER_BINARY: + return &MsgSysSetUserBinary{} + case network.MSG_SYS_GET_USER_BINARY: + return &MsgSysGetUserBinary{} + case network.MSG_SYS_NOTIFY_USER_BINARY: + return &MsgSysNotifyUserBinary{} + case network.MSG_SYS_reserve55: + return &MsgSysReserve55{} + case network.MSG_SYS_reserve56: + return &MsgSysReserve56{} + case network.MSG_SYS_reserve57: + return &MsgSysReserve57{} + case network.MSG_SYS_UPDATE_RIGHT: + return &MsgSysUpdateRight{} + case network.MSG_SYS_AUTH_QUERY: + return &MsgSysAuthQuery{} + case network.MSG_SYS_AUTH_DATA: + return &MsgSysAuthData{} + case network.MSG_SYS_AUTH_TERMINAL: + return &MsgSysAuthTerminal{} + case network.MSG_SYS_reserve5C: + return &MsgSysReserve5C{} + case network.MSG_SYS_RIGHTS_RELOAD: + return &MsgSysRightsReload{} + case network.MSG_SYS_reserve5E: + return &MsgSysReserve5E{} + case network.MSG_SYS_reserve5F: + return &MsgSysReserve5F{} + case network.MSG_MHF_SAVEDATA: + return &MsgMhfSavedata{} + case network.MSG_MHF_LOADDATA: + return &MsgMhfLoaddata{} + case network.MSG_MHF_LIST_MEMBER: + return &MsgMhfListMember{} + case network.MSG_MHF_OPR_MEMBER: + return &MsgMhfOprMember{} + case network.MSG_MHF_ENUMERATE_DIST_ITEM: + return &MsgMhfEnumerateDistItem{} + case network.MSG_MHF_APPLY_DIST_ITEM: + return &MsgMhfApplyDistItem{} + case network.MSG_MHF_ACQUIRE_DIST_ITEM: + return &MsgMhfAcquireDistItem{} + case network.MSG_MHF_GET_DIST_DESCRIPTION: + return &MsgMhfGetDistDescription{} + case network.MSG_MHF_SEND_MAIL: + return &MsgMhfSendMail{} + case network.MSG_MHF_READ_MAIL: + return &MsgMhfReadMail{} + case network.MSG_MHF_LIST_MAIL: + return &MsgMhfListMail{} + case network.MSG_MHF_OPRT_MAIL: + return &MsgMhfOprtMail{} + case network.MSG_MHF_LOAD_FAVORITE_QUEST: + return &MsgMhfLoadFavoriteQuest{} + case network.MSG_MHF_SAVE_FAVORITE_QUEST: + return &MsgMhfSaveFavoriteQuest{} + case network.MSG_MHF_REGISTER_EVENT: + return &MsgMhfRegisterEvent{} + case network.MSG_MHF_RELEASE_EVENT: + return &MsgMhfReleaseEvent{} + case network.MSG_MHF_TRANSIT_MESSAGE: + return &MsgMhfTransitMessage{} + case network.MSG_SYS_reserve71: + return &MsgSysReserve71{} + case network.MSG_SYS_reserve72: + return &MsgSysReserve72{} + case network.MSG_SYS_reserve73: + return &MsgSysReserve73{} + case network.MSG_SYS_reserve74: + return &MsgSysReserve74{} + case network.MSG_SYS_reserve75: + return &MsgSysReserve75{} + case network.MSG_SYS_reserve76: + return &MsgSysReserve76{} + case network.MSG_SYS_reserve77: + return &MsgSysReserve77{} + case network.MSG_SYS_reserve78: + return &MsgSysReserve78{} + case network.MSG_SYS_reserve79: + return &MsgSysReserve79{} + case network.MSG_SYS_reserve7A: + return &MsgSysReserve7A{} + case network.MSG_SYS_reserve7B: + return &MsgSysReserve7B{} + case network.MSG_SYS_reserve7C: + return &MsgSysReserve7C{} + case network.MSG_CA_EXCHANGE_ITEM: + return &MsgCaExchangeItem{} + case network.MSG_SYS_reserve7E: + return &MsgSysReserve7E{} + case network.MSG_MHF_PRESENT_BOX: + return &MsgMhfPresentBox{} + case network.MSG_MHF_SERVER_COMMAND: + return &MsgMhfServerCommand{} + case network.MSG_MHF_SHUT_CLIENT: + return &MsgMhfShutClient{} + case network.MSG_MHF_ANNOUNCE: + return &MsgMhfAnnounce{} + case network.MSG_MHF_SET_LOGINWINDOW: + return &MsgMhfSetLoginwindow{} + case network.MSG_SYS_TRANS_BINARY: + return &MsgSysTransBinary{} + case network.MSG_SYS_COLLECT_BINARY: + return &MsgSysCollectBinary{} + case network.MSG_SYS_GET_STATE: + return &MsgSysGetState{} + case network.MSG_SYS_SERIALIZE: + return &MsgSysSerialize{} + case network.MSG_SYS_ENUMLOBBY: + return &MsgSysEnumlobby{} + case network.MSG_SYS_ENUMUSER: + return &MsgSysEnumuser{} + case network.MSG_SYS_INFOKYSERVER: + return &MsgSysInfokyserver{} + case network.MSG_MHF_GET_CA_UNIQUE_ID: + return &MsgMhfGetCaUniqueId{} + case network.MSG_MHF_SET_CA_ACHIEVEMENT: + return &MsgMhfSetCaAchievement{} + case network.MSG_MHF_CARAVAN_MY_SCORE: + return &MsgMhfCaravanMyScore{} + case network.MSG_MHF_CARAVAN_RANKING: + return &MsgMhfCaravanRanking{} + case network.MSG_MHF_CARAVAN_MY_RANK: + return &MsgMhfCaravanMyRank{} + case network.MSG_MHF_CREATE_GUILD: + return &MsgMhfCreateGuild{} + case network.MSG_MHF_OPERATE_GUILD: + return &MsgMhfOperateGuild{} + case network.MSG_MHF_OPERATE_GUILD_MEMBER: + return &MsgMhfOperateGuildMember{} + case network.MSG_MHF_INFO_GUILD: + return &MsgMhfInfoGuild{} + case network.MSG_MHF_ENUMERATE_GUILD: + return &MsgMhfEnumerateGuild{} + case network.MSG_MHF_UPDATE_GUILD: + return &MsgMhfUpdateGuild{} + case network.MSG_MHF_ARRANGE_GUILD_MEMBER: + return &MsgMhfArrangeGuildMember{} + case network.MSG_MHF_ENUMERATE_GUILD_MEMBER: + return &MsgMhfEnumerateGuildMember{} + case network.MSG_MHF_ENUMERATE_CAMPAIGN: + return &MsgMhfEnumerateCampaign{} + case network.MSG_MHF_STATE_CAMPAIGN: + return &MsgMhfStateCampaign{} + case network.MSG_MHF_APPLY_CAMPAIGN: + return &MsgMhfApplyCampaign{} + case network.MSG_MHF_ENUMERATE_ITEM: + return &MsgMhfEnumerateItem{} + case network.MSG_MHF_ACQUIRE_ITEM: + return &MsgMhfAcquireItem{} + case network.MSG_MHF_TRANSFER_ITEM: + return &MsgMhfTransferItem{} + case network.MSG_MHF_MERCENARY_HUNTDATA: + return &MsgMhfMercenaryHuntdata{} + case network.MSG_MHF_ENTRY_ROOKIE_GUILD: + return &MsgMhfEntryRookieGuild{} + case network.MSG_MHF_ENUMERATE_QUEST: + return &MsgMhfEnumerateQuest{} + case network.MSG_MHF_ENUMERATE_EVENT: + return &MsgMhfEnumerateEvent{} + case network.MSG_MHF_ENUMERATE_PRICE: + return &MsgMhfEnumeratePrice{} + case network.MSG_MHF_ENUMERATE_RANKING: + return &MsgMhfEnumerateRanking{} + case network.MSG_MHF_ENUMERATE_ORDER: + return &MsgMhfEnumerateOrder{} + case network.MSG_MHF_ENUMERATE_SHOP: + return &MsgMhfEnumerateShop{} + case network.MSG_MHF_GET_EXTRA_INFO: + return &MsgMhfGetExtraInfo{} + case network.MSG_MHF_UPDATE_INTERIOR: + return &MsgMhfUpdateInterior{} + case network.MSG_MHF_ENUMERATE_HOUSE: + return &MsgMhfEnumerateHouse{} + case network.MSG_MHF_UPDATE_HOUSE: + return &MsgMhfUpdateHouse{} + case network.MSG_MHF_LOAD_HOUSE: + return &MsgMhfLoadHouse{} + case network.MSG_MHF_OPERATE_WAREHOUSE: + return &MsgMhfOperateWarehouse{} + case network.MSG_MHF_ENUMERATE_WAREHOUSE: + return &MsgMhfEnumerateWarehouse{} + case network.MSG_MHF_UPDATE_WAREHOUSE: + return &MsgMhfUpdateWarehouse{} + case network.MSG_MHF_ACQUIRE_TITLE: + return &MsgMhfAcquireTitle{} + case network.MSG_MHF_ENUMERATE_TITLE: + return &MsgMhfEnumerateTitle{} + case network.MSG_MHF_ENUMERATE_GUILD_ITEM: + return &MsgMhfEnumerateGuildItem{} + case network.MSG_MHF_UPDATE_GUILD_ITEM: + return &MsgMhfUpdateGuildItem{} + case network.MSG_MHF_ENUMERATE_UNION_ITEM: + return &MsgMhfEnumerateUnionItem{} + case network.MSG_MHF_UPDATE_UNION_ITEM: + return &MsgMhfUpdateUnionItem{} + case network.MSG_MHF_CREATE_JOINT: + return &MsgMhfCreateJoint{} + case network.MSG_MHF_OPERATE_JOINT: + return &MsgMhfOperateJoint{} + case network.MSG_MHF_INFO_JOINT: + return &MsgMhfInfoJoint{} + case network.MSG_MHF_UPDATE_GUILD_ICON: + return &MsgMhfUpdateGuildIcon{} + case network.MSG_MHF_INFO_FESTA: + return &MsgMhfInfoFesta{} + case network.MSG_MHF_ENTRY_FESTA: + return &MsgMhfEntryFesta{} + case network.MSG_MHF_CHARGE_FESTA: + return &MsgMhfChargeFesta{} + case network.MSG_MHF_ACQUIRE_FESTA: + return &MsgMhfAcquireFesta{} + case network.MSG_MHF_STATE_FESTA_U: + return &MsgMhfStateFestaU{} + case network.MSG_MHF_STATE_FESTA_G: + return &MsgMhfStateFestaG{} + case network.MSG_MHF_ENUMERATE_FESTA_MEMBER: + return &MsgMhfEnumerateFestaMember{} + case network.MSG_MHF_VOTE_FESTA: + return &MsgMhfVoteFesta{} + case network.MSG_MHF_ACQUIRE_CAFE_ITEM: + return &MsgMhfAcquireCafeItem{} + case network.MSG_MHF_UPDATE_CAFEPOINT: + return &MsgMhfUpdateCafepoint{} + case network.MSG_MHF_CHECK_DAILY_CAFEPOINT: + return &MsgMhfCheckDailyCafepoint{} + case network.MSG_MHF_GET_COG_INFO: + return &MsgMhfGetCogInfo{} + case network.MSG_MHF_CHECK_MONTHLY_ITEM: + return &MsgMhfCheckMonthlyItem{} + case network.MSG_MHF_ACQUIRE_MONTHLY_ITEM: + return &MsgMhfAcquireMonthlyItem{} + case network.MSG_MHF_CHECK_WEEKLY_STAMP: + return &MsgMhfCheckWeeklyStamp{} + case network.MSG_MHF_EXCHANGE_WEEKLY_STAMP: + return &MsgMhfExchangeWeeklyStamp{} + case network.MSG_MHF_CREATE_MERCENARY: + return &MsgMhfCreateMercenary{} + case network.MSG_MHF_SAVE_MERCENARY: + return &MsgMhfSaveMercenary{} + case network.MSG_MHF_READ_MERCENARY_W: + return &MsgMhfReadMercenaryW{} + case network.MSG_MHF_READ_MERCENARY_M: + return &MsgMhfReadMercenaryM{} + case network.MSG_MHF_CONTRACT_MERCENARY: + return &MsgMhfContractMercenary{} + case network.MSG_MHF_ENUMERATE_MERCENARY_LOG: + return &MsgMhfEnumerateMercenaryLog{} + case network.MSG_MHF_ENUMERATE_GUACOT: + return &MsgMhfEnumerateGuacot{} + case network.MSG_MHF_UPDATE_GUACOT: + return &MsgMhfUpdateGuacot{} + case network.MSG_MHF_INFO_TOURNAMENT: + return &MsgMhfInfoTournament{} + case network.MSG_MHF_ENTRY_TOURNAMENT: + return &MsgMhfEntryTournament{} + case network.MSG_MHF_ENTER_TOURNAMENT_QUEST: + return &MsgMhfEnterTournamentQuest{} + case network.MSG_MHF_ACQUIRE_TOURNAMENT: + return &MsgMhfAcquireTournament{} + case network.MSG_MHF_GET_ACHIEVEMENT: + return &MsgMhfGetAchievement{} + case network.MSG_MHF_RESET_ACHIEVEMENT: + return &MsgMhfResetAchievement{} + case network.MSG_MHF_ADD_ACHIEVEMENT: + return &MsgMhfAddAchievement{} + case network.MSG_MHF_PAYMENT_ACHIEVEMENT: + return &MsgMhfPaymentAchievement{} + case network.MSG_MHF_DISPLAYED_ACHIEVEMENT: + return &MsgMhfDisplayedAchievement{} + case network.MSG_MHF_INFO_SCENARIO_COUNTER: + return &MsgMhfInfoScenarioCounter{} + case network.MSG_MHF_SAVE_SCENARIO_DATA: + return &MsgMhfSaveScenarioData{} + case network.MSG_MHF_LOAD_SCENARIO_DATA: + return &MsgMhfLoadScenarioData{} + case network.MSG_MHF_GET_BBS_SNS_STATUS: + return &MsgMhfGetBbsSnsStatus{} + case network.MSG_MHF_APPLY_BBS_ARTICLE: + return &MsgMhfApplyBbsArticle{} + case network.MSG_MHF_GET_ETC_POINTS: + return &MsgMhfGetEtcPoints{} + case network.MSG_MHF_UPDATE_ETC_POINT: + return &MsgMhfUpdateEtcPoint{} + case network.MSG_MHF_GET_MYHOUSE_INFO: + return &MsgMhfGetMyhouseInfo{} + case network.MSG_MHF_UPDATE_MYHOUSE_INFO: + return &MsgMhfUpdateMyhouseInfo{} + case network.MSG_MHF_GET_WEEKLY_SCHEDULE: + return &MsgMhfGetWeeklySchedule{} + case network.MSG_MHF_ENUMERATE_INV_GUILD: + return &MsgMhfEnumerateInvGuild{} + case network.MSG_MHF_OPERATION_INV_GUILD: + return &MsgMhfOperationInvGuild{} + case network.MSG_MHF_STAMPCARD_STAMP: + return &MsgMhfStampcardStamp{} + case network.MSG_MHF_STAMPCARD_PRIZE: + return &MsgMhfStampcardPrize{} + case network.MSG_MHF_UNRESERVE_SRG: + return &MsgMhfUnreserveSrg{} + case network.MSG_MHF_LOAD_PLATE_DATA: + return &MsgMhfLoadPlateData{} + case network.MSG_MHF_SAVE_PLATE_DATA: + return &MsgMhfSavePlateData{} + case network.MSG_MHF_LOAD_PLATE_BOX: + return &MsgMhfLoadPlateBox{} + case network.MSG_MHF_SAVE_PLATE_BOX: + return &MsgMhfSavePlateBox{} + case network.MSG_MHF_READ_GUILDCARD: + return &MsgMhfReadGuildcard{} + case network.MSG_MHF_UPDATE_GUILDCARD: + return &MsgMhfUpdateGuildcard{} + case network.MSG_MHF_READ_BEAT_LEVEL: + return &MsgMhfReadBeatLevel{} + case network.MSG_MHF_UPDATE_BEAT_LEVEL: + return &MsgMhfUpdateBeatLevel{} + case network.MSG_MHF_READ_BEAT_LEVEL_ALL_RANKING: + return &MsgMhfReadBeatLevelAllRanking{} + case network.MSG_MHF_READ_BEAT_LEVEL_MY_RANKING: + return &MsgMhfReadBeatLevelMyRanking{} + case network.MSG_MHF_READ_LAST_WEEK_BEAT_RANKING: + return &MsgMhfReadLastWeekBeatRanking{} + case network.MSG_MHF_ACCEPT_READ_REWARD: + return &MsgMhfAcceptReadReward{} + case network.MSG_MHF_GET_ADDITIONAL_BEAT_REWARD: + return &MsgMhfGetAdditionalBeatReward{} + case network.MSG_MHF_GET_FIXED_SEIBATU_RANKING_TABLE: + return &MsgMhfGetFixedSeibatuRankingTable{} + case network.MSG_MHF_GET_BBS_USER_STATUS: + return &MsgMhfGetBbsUserStatus{} + case network.MSG_MHF_KICK_EXPORT_FORCE: + return &MsgMhfKickExportForce{} + case network.MSG_MHF_GET_BREAK_SEIBATU_LEVEL_REWARD: + return &MsgMhfGetBreakSeibatuLevelReward{} + case network.MSG_MHF_GET_WEEKLY_SEIBATU_RANKING_REWARD: + return &MsgMhfGetWeeklySeibatuRankingReward{} + case network.MSG_MHF_GET_EARTH_STATUS: + return &MsgMhfGetEarthStatus{} + case network.MSG_MHF_LOAD_PARTNER: + return &MsgMhfLoadPartner{} + case network.MSG_MHF_SAVE_PARTNER: + return &MsgMhfSavePartner{} + case network.MSG_MHF_GET_GUILD_MISSION_LIST: + return &MsgMhfGetGuildMissionList{} + case network.MSG_MHF_GET_GUILD_MISSION_RECORD: + return &MsgMhfGetGuildMissionRecord{} + case network.MSG_MHF_ADD_GUILD_MISSION_COUNT: + return &MsgMhfAddGuildMissionCount{} + case network.MSG_MHF_SET_GUILD_MISSION_TARGET: + return &MsgMhfSetGuildMissionTarget{} + case network.MSG_MHF_CANCEL_GUILD_MISSION_TARGET: + return &MsgMhfCancelGuildMissionTarget{} + case network.MSG_MHF_LOAD_OTOMO_AIROU: + return &MsgMhfLoadOtomoAirou{} + case network.MSG_MHF_SAVE_OTOMO_AIROU: + return &MsgMhfSaveOtomoAirou{} + case network.MSG_MHF_ENUMERATE_GUILD_TRESURE: + return &MsgMhfEnumerateGuildTresure{} + case network.MSG_MHF_ENUMERATE_AIROULIST: + return &MsgMhfEnumerateAiroulist{} + case network.MSG_MHF_REGIST_GUILD_TRESURE: + return &MsgMhfRegistGuildTresure{} + case network.MSG_MHF_ACQUIRE_GUILD_TRESURE: + return &MsgMhfAcquireGuildTresure{} + case network.MSG_MHF_OPERATE_GUILD_TRESURE_REPORT: + return &MsgMhfOperateGuildTresureReport{} + case network.MSG_MHF_GET_GUILD_TRESURE_SOUVENIR: + return &MsgMhfGetGuildTresureSouvenir{} + case network.MSG_MHF_ACQUIRE_GUILD_TRESURE_SOUVENIR: + return &MsgMhfAcquireGuildTresureSouvenir{} + case network.MSG_MHF_ENUMERATE_FESTA_INTERMEDIATE_PRIZE: + return &MsgMhfEnumerateFestaIntermediatePrize{} + case network.MSG_MHF_ACQUIRE_FESTA_INTERMEDIATE_PRIZE: + return &MsgMhfAcquireFestaIntermediatePrize{} + case network.MSG_MHF_LOAD_DECO_MYSET: + return &MsgMhfLoadDecoMyset{} + case network.MSG_MHF_SAVE_DECO_MYSET: + return &MsgMhfSaveDecoMyset{} + case network.MSG_MHF_reserve010F: + return &MsgMhfReserve010F{} + case network.MSG_MHF_LOAD_GUILD_COOKING: + return &MsgMhfLoadGuildCooking{} + case network.MSG_MHF_REGIST_GUILD_COOKING: + return &MsgMhfRegistGuildCooking{} + case network.MSG_MHF_LOAD_GUILD_ADVENTURE: + return &MsgMhfLoadGuildAdventure{} + case network.MSG_MHF_REGIST_GUILD_ADVENTURE: + return &MsgMhfRegistGuildAdventure{} + case network.MSG_MHF_ACQUIRE_GUILD_ADVENTURE: + return &MsgMhfAcquireGuildAdventure{} + case network.MSG_MHF_CHARGE_GUILD_ADVENTURE: + return &MsgMhfChargeGuildAdventure{} + case network.MSG_MHF_LOAD_LEGEND_DISPATCH: + return &MsgMhfLoadLegendDispatch{} + case network.MSG_MHF_LOAD_HUNTER_NAVI: + return &MsgMhfLoadHunterNavi{} + case network.MSG_MHF_SAVE_HUNTER_NAVI: + return &MsgMhfSaveHunterNavi{} + case network.MSG_MHF_REGIST_SPABI_TIME: + return &MsgMhfRegistSpabiTime{} + case network.MSG_MHF_GET_GUILD_WEEKLY_BONUS_MASTER: + return &MsgMhfGetGuildWeeklyBonusMaster{} + case network.MSG_MHF_GET_GUILD_WEEKLY_BONUS_ACTIVE_COUNT: + return &MsgMhfGetGuildWeeklyBonusActiveCount{} + case network.MSG_MHF_ADD_GUILD_WEEKLY_BONUS_EXCEPTIONAL_USER: + return &MsgMhfAddGuildWeeklyBonusExceptionalUser{} + case network.MSG_MHF_GET_TOWER_INFO: + return &MsgMhfGetTowerInfo{} + case network.MSG_MHF_POST_TOWER_INFO: + return &MsgMhfPostTowerInfo{} + case network.MSG_MHF_GET_GEM_INFO: + return &MsgMhfGetGemInfo{} + case network.MSG_MHF_POST_GEM_INFO: + return &MsgMhfPostGemInfo{} + case network.MSG_MHF_GET_EARTH_VALUE: + return &MsgMhfGetEarthValue{} + case network.MSG_MHF_DEBUG_POST_VALUE: + return &MsgMhfDebugPostValue{} + case network.MSG_MHF_GET_PAPER_DATA: + return &MsgMhfGetPaperData{} + case network.MSG_MHF_GET_NOTICE: + return &MsgMhfGetNotice{} + case network.MSG_MHF_POST_NOTICE: + return &MsgMhfPostNotice{} + case network.MSG_MHF_GET_BOOST_TIME: + return &MsgMhfGetBoostTime{} + case network.MSG_MHF_POST_BOOST_TIME: + return &MsgMhfPostBoostTime{} + case network.MSG_MHF_GET_BOOST_TIME_LIMIT: + return &MsgMhfGetBoostTimeLimit{} + case network.MSG_MHF_POST_BOOST_TIME_LIMIT: + return &MsgMhfPostBoostTimeLimit{} + case network.MSG_MHF_ENUMERATE_FESTA_PERSONAL_PRIZE: + return &MsgMhfEnumerateFestaPersonalPrize{} + case network.MSG_MHF_ACQUIRE_FESTA_PERSONAL_PRIZE: + return &MsgMhfAcquireFestaPersonalPrize{} + case network.MSG_MHF_GET_RAND_FROM_TABLE: + return &MsgMhfGetRandFromTable{} + case network.MSG_MHF_GET_CAFE_DURATION: + return &MsgMhfGetCafeDuration{} + case network.MSG_MHF_GET_CAFE_DURATION_BONUS_INFO: + return &MsgMhfGetCafeDurationBonusInfo{} + case network.MSG_MHF_RECEIVE_CAFE_DURATION_BONUS: + return &MsgMhfReceiveCafeDurationBonus{} + case network.MSG_MHF_POST_CAFE_DURATION_BONUS_RECEIVED: + return &MsgMhfPostCafeDurationBonusReceived{} + case network.MSG_MHF_GET_GACHA_POINT: + return &MsgMhfGetGachaPoint{} + case network.MSG_MHF_USE_GACHA_POINT: + return &MsgMhfUseGachaPoint{} + case network.MSG_MHF_EXCHANGE_FPOINT_2_ITEM: + return &MsgMhfExchangeFpoint2Item{} + case network.MSG_MHF_EXCHANGE_ITEM_2_FPOINT: + return &MsgMhfExchangeItem2Fpoint{} + case network.MSG_MHF_GET_FPOINT_EXCHANGE_LIST: + return &MsgMhfGetFpointExchangeList{} + case network.MSG_MHF_PLAY_STEPUP_GACHA: + return &MsgMhfPlayStepupGacha{} + case network.MSG_MHF_RECEIVE_GACHA_ITEM: + return &MsgMhfReceiveGachaItem{} + case network.MSG_MHF_GET_STEPUP_STATUS: + return &MsgMhfGetStepupStatus{} + case network.MSG_MHF_PLAY_FREE_GACHA: + return &MsgMhfPlayFreeGacha{} + case network.MSG_MHF_GET_TINY_BIN: + return &MsgMhfGetTinyBin{} + case network.MSG_MHF_POST_TINY_BIN: + return &MsgMhfPostTinyBin{} + case network.MSG_MHF_GET_SENYU_DAILY_COUNT: + return &MsgMhfGetSenyuDailyCount{} + case network.MSG_MHF_GET_GUILD_TARGET_MEMBER_NUM: + return &MsgMhfGetGuildTargetMemberNum{} + case network.MSG_MHF_GET_BOOST_RIGHT: + return &MsgMhfGetBoostRight{} + case network.MSG_MHF_START_BOOST_TIME: + return &MsgMhfStartBoostTime{} + case network.MSG_MHF_POST_BOOST_TIME_QUEST_RETURN: + return &MsgMhfPostBoostTimeQuestReturn{} + case network.MSG_MHF_GET_BOX_GACHA_INFO: + return &MsgMhfGetBoxGachaInfo{} + case network.MSG_MHF_PLAY_BOX_GACHA: + return &MsgMhfPlayBoxGacha{} + case network.MSG_MHF_RESET_BOX_GACHA_INFO: + return &MsgMhfResetBoxGachaInfo{} + case network.MSG_MHF_GET_SEIBATTLE: + return &MsgMhfGetSeibattle{} + case network.MSG_MHF_POST_SEIBATTLE: + return &MsgMhfPostSeibattle{} + case network.MSG_MHF_GET_RYOUDAMA: + return &MsgMhfGetRyoudama{} + case network.MSG_MHF_POST_RYOUDAMA: + return &MsgMhfPostRyoudama{} + case network.MSG_MHF_GET_TENROUIRAI: + return &MsgMhfGetTenrouirai{} + case network.MSG_MHF_POST_TENROUIRAI: + return &MsgMhfPostTenrouirai{} + case network.MSG_MHF_POST_GUILD_SCOUT: + return &MsgMhfPostGuildScout{} + case network.MSG_MHF_CANCEL_GUILD_SCOUT: + return &MsgMhfCancelGuildScout{} + case network.MSG_MHF_ANSWER_GUILD_SCOUT: + return &MsgMhfAnswerGuildScout{} + case network.MSG_MHF_GET_GUILD_SCOUT_LIST: + return &MsgMhfGetGuildScoutList{} + case network.MSG_MHF_GET_GUILD_MANAGE_RIGHT: + return &MsgMhfGetGuildManageRight{} + case network.MSG_MHF_SET_GUILD_MANAGE_RIGHT: + return &MsgMhfSetGuildManageRight{} + case network.MSG_MHF_PLAY_NORMAL_GACHA: + return &MsgMhfPlayNormalGacha{} + case network.MSG_MHF_GET_DAILY_MISSION_MASTER: + return &MsgMhfGetDailyMissionMaster{} + case network.MSG_MHF_GET_DAILY_MISSION_PERSONAL: + return &MsgMhfGetDailyMissionPersonal{} + case network.MSG_MHF_SET_DAILY_MISSION_PERSONAL: + return &MsgMhfSetDailyMissionPersonal{} + case network.MSG_MHF_GET_GACHA_PLAY_HISTORY: + return &MsgMhfGetGachaPlayHistory{} + case network.MSG_MHF_GET_REJECT_GUILD_SCOUT: + return &MsgMhfGetRejectGuildScout{} + case network.MSG_MHF_SET_REJECT_GUILD_SCOUT: + return &MsgMhfSetRejectGuildScout{} + case network.MSG_MHF_GET_CA_ACHIEVEMENT_HIST: + return &MsgMhfGetCaAchievementHist{} + case network.MSG_MHF_SET_CA_ACHIEVEMENT_HIST: + return &MsgMhfSetCaAchievementHist{} + case network.MSG_MHF_GET_KEEP_LOGIN_BOOST_STATUS: + return &MsgMhfGetKeepLoginBoostStatus{} + case network.MSG_MHF_USE_KEEP_LOGIN_BOOST: + return &MsgMhfUseKeepLoginBoost{} + case network.MSG_MHF_GET_UD_SCHEDULE: + return &MsgMhfGetUdSchedule{} + case network.MSG_MHF_GET_UD_INFO: + return &MsgMhfGetUdInfo{} + case network.MSG_MHF_GET_KIJU_INFO: + return &MsgMhfGetKijuInfo{} + case network.MSG_MHF_SET_KIJU: + return &MsgMhfSetKiju{} + case network.MSG_MHF_ADD_UD_POINT: + return &MsgMhfAddUdPoint{} + case network.MSG_MHF_GET_UD_MY_POINT: + return &MsgMhfGetUdMyPoint{} + case network.MSG_MHF_GET_UD_TOTAL_POINT_INFO: + return &MsgMhfGetUdTotalPointInfo{} + case network.MSG_MHF_GET_UD_BONUS_QUEST_INFO: + return &MsgMhfGetUdBonusQuestInfo{} + case network.MSG_MHF_GET_UD_SELECTED_COLOR_INFO: + return &MsgMhfGetUdSelectedColorInfo{} + case network.MSG_MHF_GET_UD_MONSTER_POINT: + return &MsgMhfGetUdMonsterPoint{} + case network.MSG_MHF_GET_UD_DAILY_PRESENT_LIST: + return &MsgMhfGetUdDailyPresentList{} + case network.MSG_MHF_GET_UD_NORMA_PRESENT_LIST: + return &MsgMhfGetUdNormaPresentList{} + case network.MSG_MHF_GET_UD_RANKING_REWARD_LIST: + return &MsgMhfGetUdRankingRewardList{} + case network.MSG_MHF_ACQUIRE_UD_ITEM: + return &MsgMhfAcquireUdItem{} + case network.MSG_MHF_GET_REWARD_SONG: + return &MsgMhfGetRewardSong{} + case network.MSG_MHF_USE_REWARD_SONG: + return &MsgMhfUseRewardSong{} + case network.MSG_MHF_ADD_REWARD_SONG_COUNT: + return &MsgMhfAddRewardSongCount{} + case network.MSG_MHF_GET_UD_RANKING: + return &MsgMhfGetUdRanking{} + case network.MSG_MHF_GET_UD_MY_RANKING: + return &MsgMhfGetUdMyRanking{} + case network.MSG_MHF_ACQUIRE_MONTHLY_REWARD: + return &MsgMhfAcquireMonthlyReward{} + case network.MSG_MHF_GET_UD_GUILD_MAP_INFO: + return &MsgMhfGetUdGuildMapInfo{} + case network.MSG_MHF_GENERATE_UD_GUILD_MAP: + return &MsgMhfGenerateUdGuildMap{} + case network.MSG_MHF_GET_UD_TACTICS_POINT: + return &MsgMhfGetUdTacticsPoint{} + case network.MSG_MHF_ADD_UD_TACTICS_POINT: + return &MsgMhfAddUdTacticsPoint{} + case network.MSG_MHF_GET_UD_TACTICS_RANKING: + return &MsgMhfGetUdTacticsRanking{} + case network.MSG_MHF_GET_UD_TACTICS_REWARD_LIST: + return &MsgMhfGetUdTacticsRewardList{} + case network.MSG_MHF_GET_UD_TACTICS_LOG: + return &MsgMhfGetUdTacticsLog{} + case network.MSG_MHF_GET_EQUIP_SKIN_HIST: + return &MsgMhfGetEquipSkinHist{} + case network.MSG_MHF_UPDATE_EQUIP_SKIN_HIST: + return &MsgMhfUpdateEquipSkinHist{} + case network.MSG_MHF_GET_UD_TACTICS_FOLLOWER: + return &MsgMhfGetUdTacticsFollower{} + case network.MSG_MHF_SET_UD_TACTICS_FOLLOWER: + return &MsgMhfSetUdTacticsFollower{} + case network.MSG_MHF_GET_UD_SHOP_COIN: + return &MsgMhfGetUdShopCoin{} + case network.MSG_MHF_USE_UD_SHOP_COIN: + return &MsgMhfUseUdShopCoin{} + case network.MSG_MHF_GET_ENHANCED_MINIDATA: + return &MsgMhfGetEnhancedMinidata{} + case network.MSG_MHF_SET_ENHANCED_MINIDATA: + return &MsgMhfSetEnhancedMinidata{} + case network.MSG_MHF_SEX_CHANGER: + return &MsgMhfSexChanger{} + case network.MSG_MHF_GET_LOBBY_CROWD: + return &MsgMhfGetLobbyCrowd{} + case network.MSG_SYS_reserve180: + return &MsgSysReserve180{} + case network.MSG_MHF_GUILD_HUNTDATA: + return &MsgMhfGuildHuntdata{} + case network.MSG_MHF_ADD_KOURYOU_POINT: + return &MsgMhfAddKouryouPoint{} + case network.MSG_MHF_GET_KOURYOU_POINT: + return &MsgMhfGetKouryouPoint{} + case network.MSG_MHF_EXCHANGE_KOURYOU_POINT: + return &MsgMhfExchangeKouryouPoint{} + case network.MSG_MHF_GET_UD_TACTICS_BONUS_QUEST: + return &MsgMhfGetUdTacticsBonusQuest{} + case network.MSG_MHF_GET_UD_TACTICS_FIRST_QUEST_BONUS: + return &MsgMhfGetUdTacticsFirstQuestBonus{} + case network.MSG_MHF_GET_UD_TACTICS_REMAINING_POINT: + return &MsgMhfGetUdTacticsRemainingPoint{} + case network.MSG_SYS_reserve188: + return &MsgSysReserve188{} + case network.MSG_MHF_LOAD_PLATE_MYSET: + return &MsgMhfLoadPlateMyset{} + case network.MSG_MHF_SAVE_PLATE_MYSET: + return &MsgMhfSavePlateMyset{} + case network.MSG_SYS_reserve18B: + return &MsgSysReserve18B{} + case network.MSG_MHF_GET_RESTRICTION_EVENT: + return &MsgMhfGetRestrictionEvent{} + case network.MSG_MHF_SET_RESTRICTION_EVENT: + return &MsgMhfSetRestrictionEvent{} + case network.MSG_SYS_reserve18E: + return &MsgSysReserve18E{} + case network.MSG_SYS_reserve18F: + return &MsgSysReserve18F{} + case network.MSG_MHF_GET_TREND_WEAPON: + return &MsgMhfGetTrendWeapon{} + case network.MSG_MHF_UPDATE_USE_TREND_WEAPON_LOG: + return &MsgMhfUpdateUseTrendWeaponLog{} + case network.MSG_SYS_reserve192: + return &MsgSysReserve192{} + case network.MSG_SYS_reserve193: + return &MsgSysReserve193{} + case network.MSG_SYS_reserve194: + return &MsgSysReserve194{} + case network.MSG_MHF_SAVE_RENGOKU_DATA: + return &MsgMhfSaveRengokuData{} + case network.MSG_MHF_LOAD_RENGOKU_DATA: + return &MsgMhfLoadRengokuData{} + case network.MSG_MHF_GET_RENGOKU_BINARY: + return &MsgMhfGetRengokuBinary{} + case network.MSG_MHF_ENUMERATE_RENGOKU_RANKING: + return &MsgMhfEnumerateRengokuRanking{} + case network.MSG_MHF_GET_RENGOKU_RANKING_RANK: + return &MsgMhfGetRengokuRankingRank{} + case network.MSG_MHF_ACQUIRE_EXCHANGE_SHOP: + return &MsgMhfAcquireExchangeShop{} + case network.MSG_SYS_reserve19B: + return &MsgSysReserve19B{} + case network.MSG_MHF_SAVE_MEZFES_DATA: + return &MsgMhfSaveMezfesData{} + case network.MSG_MHF_LOAD_MEZFES_DATA: + return &MsgMhfLoadMezfesData{} + case network.MSG_SYS_reserve19E: + return &MsgSysReserve19E{} + case network.MSG_SYS_reserve19F: + return &MsgSysReserve19F{} + case network.MSG_MHF_UPDATE_FORCE_GUILD_RANK: + return &MsgMhfUpdateForceGuildRank{} + case network.MSG_MHF_RESET_TITLE: + return &MsgMhfResetTitle{} + case network.MSG_SYS_reserve202: + return &MsgSysReserve202{} + case network.MSG_SYS_reserve203: + return &MsgSysReserve203{} + case network.MSG_SYS_reserve204: + return &MsgSysReserve204{} + case network.MSG_SYS_reserve205: + return &MsgSysReserve205{} + case network.MSG_SYS_reserve206: + return &MsgSysReserve206{} + case network.MSG_SYS_reserve207: + return &MsgSysReserve207{} + case network.MSG_SYS_reserve208: + return &MsgSysReserve208{} + case network.MSG_SYS_reserve209: + return &MsgSysReserve209{} + case network.MSG_SYS_reserve20A: + return &MsgSysReserve20A{} + case network.MSG_SYS_reserve20B: + return &MsgSysReserve20B{} + case network.MSG_SYS_reserve20C: + return &MsgSysReserve20C{} + case network.MSG_SYS_reserve20D: + return &MsgSysReserve20D{} + case network.MSG_SYS_reserve20E: + return &MsgSysReserve20E{} + case network.MSG_SYS_reserve20F: + return &MsgSysReserve20F{} + } + return nil +} diff --git a/signserver/sign_server.go b/signserver/sign_server.go index 17704f6b2..1e21de7e5 100644 --- a/signserver/sign_server.go +++ b/signserver/sign_server.go @@ -23,6 +23,7 @@ type Server struct { sessions map[int]*Session db *sql.DB listenAddr string + listener net.Listener } // NewServer creates a new Server type. @@ -36,16 +37,23 @@ func NewServer(config *Config) *Server { return s } -// Listen listens for new connections and accepts/serves them. -func (s *Server) Listen() { +// Start starts the server in a new goroutine. +func (s *Server) Start() error { l, err := net.Listen("tcp", s.listenAddr) if err != nil { - panic(err) + return err } - defer l.Close() + s.listener = l + //defer l.Close() + go s.acceptClients() + + return nil +} + +func (s *Server) acceptClients() { for { - conn, err := l.Accept() + conn, err := s.listener.Accept() if err != nil { panic(err) }