2017-08-22 17:29:03 +02:00
|
|
|
#ifndef _CORE_NETWORK_PACKETS_IPCS_H
|
|
|
|
#define _CORE_NETWORK_PACKETS_IPCS_H
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2018-06-02 13:38:00 +02:00
|
|
|
#include <stdint.h>
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2018-11-29 16:55:48 +01:00
|
|
|
namespace Sapphire::Network::Packets
|
2018-08-29 21:40:59 +02:00
|
|
|
{
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Lobby Connection IPC Codes
|
|
|
|
/**
|
2023-01-27 00:33:31 -03:00
|
|
|
* Server IPC Lobby Type Codes.
|
|
|
|
*/
|
2018-11-01 23:56:43 +01:00
|
|
|
enum ServerLobbyIpcType : uint16_t
|
|
|
|
{
|
|
|
|
LobbyError = 0x0002,
|
|
|
|
LobbyServiceAccountList = 0x000C,
|
|
|
|
LobbyCharList = 0x000D,
|
|
|
|
LobbyCharCreate = 0x000E,
|
|
|
|
LobbyEnterWorld = 0x000F,
|
|
|
|
LobbyServerList = 0x0015,
|
|
|
|
LobbyRetainerList = 0x0017,
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
};
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
/**
|
2023-01-27 00:33:31 -03:00
|
|
|
* Client IPC Lobby Type Codes.
|
|
|
|
*/
|
2018-11-01 23:56:43 +01:00
|
|
|
enum ClientLobbyIpcType : uint16_t
|
|
|
|
{
|
|
|
|
ReqCharList = 0x0003,
|
|
|
|
ReqEnterWorld = 0x0004,
|
|
|
|
ClientVersionInfo = 0x0005,
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
ReqCharDelete = 0x000A,
|
|
|
|
ReqCharCreate = 0x000B,
|
|
|
|
};
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Zone Connection IPC Codes
|
|
|
|
/**
|
2023-01-27 00:33:31 -03:00
|
|
|
* Server IPC Zone Type Codes.
|
|
|
|
*/
|
2018-11-01 23:56:43 +01:00
|
|
|
enum ServerZoneIpcType : uint16_t
|
|
|
|
{
|
2023-03-06 23:26:58 -08:00
|
|
|
Ping = 0x2f7, // updated 6.35
|
|
|
|
Init = 0xa9, // updated 6.35
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
ActorFreeSpawn = 0xcd, // updated 6.35
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
InitZone = 0x37d, // updated 6.35
|
|
|
|
PrepareZoning = 0x99, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
EffectResult = 0x37b, // updated 6.35
|
|
|
|
EffectResultBasic = 0x1fb, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
ActorControl = 0x1bb, // updated 6.35
|
|
|
|
ActorControlTarget = 0x19d, // updated 6.35
|
|
|
|
ActorControlSelf = 0x228, // updated 6.35
|
|
|
|
ActorCast = 0x291, // updated 6.35
|
|
|
|
ActorSetPos = 0x2e5, // updated 6.35
|
|
|
|
ActorMove = 0xb4, // updated 6.35
|
|
|
|
ActorGauge = 0x376, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-10-29 20:23:06 +11:00
|
|
|
/*!
|
|
|
|
* @brief Used when resting
|
|
|
|
*/
|
2023-03-06 23:26:58 -08:00
|
|
|
UpdateHpMpTp = 0x394, // updated 6.35
|
|
|
|
UpdateClassInfo = 0x20a, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
///////////////////////////////////////////////////
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2020-05-01 20:19:10 +09:00
|
|
|
ChatBanned = 0xF06B,
|
2023-03-06 23:26:58 -08:00
|
|
|
Playtime = 0x301, // updated 6.35
|
|
|
|
Logout = 0x181, // updated 6.35
|
|
|
|
CFNotify = 0x3c6, // updated 6.35
|
2018-11-01 23:56:43 +01:00
|
|
|
CFMemberStatus = 0x0079,
|
2023-03-06 23:26:58 -08:00
|
|
|
CFDutyInfo = 0x3ae, // updated 6.35
|
2020-03-17 22:23:26 +09:00
|
|
|
CFPlayerInNeed = 0xF07F,
|
2023-03-06 23:26:58 -08:00
|
|
|
CFPreferredRole = 0x2aa, // updated 6.35
|
|
|
|
CFCancel = 0x206, // updated 6.35
|
2020-04-24 17:00:48 +09:00
|
|
|
SocialRequestError = 0xF0AD,
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
CFRegistered = 0x029F, // updated 5.58h
|
2023-03-06 23:26:58 -08:00
|
|
|
SocialRequestResponse = 0x33b, // updated 6.35
|
2023-03-02 00:19:08 -06:00
|
|
|
SocialMessage = 0x03CB, // updated 5.58h
|
|
|
|
SocialMessage2 = 0x01D7, // updated 5.58h
|
2021-07-27 21:08:23 +09:00
|
|
|
CancelAllianceForming = 0xF0C6, // updated 4.2
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
LogMessage = 0xea, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
Chat = 0x118, // updated 6.35
|
2020-11-11 02:07:59 +09:00
|
|
|
PartyChat = 0x0065,
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2020-05-01 20:19:10 +09:00
|
|
|
WorldVisitList = 0xF0FE, // added 4.5
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
SocialList = 0x222, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
ExamineSearchInfo = 0xf9, // updated 6.35
|
|
|
|
UpdateSearchInfo = 0x2b8, // updated 6.35
|
|
|
|
InitSearchInfo = 0x17c, // updated 6.35
|
|
|
|
ExamineSearchComment = 0x3a7, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
ServerNoticeShort = 0x0333, // updated 5.58h
|
|
|
|
ServerNotice = 0x13a, // updated 6.35
|
|
|
|
SystemLogMessage = 0xf7, // updated 6.35
|
|
|
|
SetOnlineStatus = 0x233, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
CountdownInitiate = 0x23e, // updated 6.35
|
|
|
|
CountdownCancel = 0x365, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
PlayerAddedToBlacklist = 0x1fe, // updated 6.35
|
|
|
|
PlayerRemovedFromBlacklist = 0x19a, // updated 6.35
|
|
|
|
BlackList = 0xd2, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
LinkshellList = 0x225, // updated 6.35
|
|
|
|
CrossWorldLinkshellList = 0x2d7, // updated 6.35
|
|
|
|
FellowshipList = 0x34c, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
MailDeleteRequest = 0x223, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-06-30 18:32:44 +10:00
|
|
|
// 12D - 137 - constant gap between 4.5x -> 5.0
|
2023-01-27 00:33:31 -03:00
|
|
|
ReqMoogleMailList = 0xF138, // updated 5.0
|
|
|
|
ReqMoogleMailLetter = 0xF139, // updated 5.0
|
2019-06-30 21:08:51 +10:00
|
|
|
MailLetterNotification = 0x013A, // updated 5.0
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
MarketTaxRates = 0x01F8, // updated 5.35h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
MarketBoardSearchResult = 0x31e, // updated 6.35
|
|
|
|
MarketBoardItemListingCount = 0x32e, // updated 6.35
|
|
|
|
MarketBoardItemListingHistory = 0x3b1, // updated 6.35
|
|
|
|
MarketBoardItemListing = 0x3cb, // updated 6.35
|
|
|
|
MarketBoardPurchase = 0x243, // updated 6.35
|
|
|
|
ItemMarketBoardInfo = 0x130, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
CharaFreeCompanyTag = 0x013B, // updated 4.5
|
|
|
|
FreeCompanyBoardMsg = 0x03DB, // updated 5.58h
|
|
|
|
FreeCompanyInfo = 0x177, // updated 6.35
|
|
|
|
FreeCompanyDialog = 0xac, // updated 6.35
|
|
|
|
ExamineFreeCompanyInfo = 0xf1, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2020-05-01 20:19:10 +09:00
|
|
|
FreeCompanyUpdateShortMessage = 0xF157, // added 5.0
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
StatusEffectList = 0x2d4, // updated 6.35
|
|
|
|
EurekaStatusEffectList = 0x3d0, // updated 6.35
|
|
|
|
BossStatusEffectList = 0x35d, // updated 6.35
|
|
|
|
StatusEffectList2 = 0x3de, // updated 6.35
|
|
|
|
StatusEffectList3 = 0x123, // updated 6.35
|
|
|
|
Effect = 0xd4, // updated 6.35
|
|
|
|
AoeEffect8 = 0x1a4, // updated 6.35
|
|
|
|
AoeEffect16 = 0x1c9, // updated 6.35
|
|
|
|
AoeEffect24 = 0x252, // updated 6.35
|
|
|
|
AoeEffect32 = 0x2c8, // updated 6.35
|
|
|
|
PersistantEffect = 0x123, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
PlaceFieldMarker = 0x160, // updated 6.35
|
|
|
|
PlaceFieldMarkerPreset = 0x90, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
GCAffiliation = 0x2df, // updated 6.35
|
|
|
|
|
|
|
|
PlayerSpawn = 0x100, // updated 6.35
|
|
|
|
NpcSpawn = 0x1c0, // updated 6.35
|
|
|
|
NpcSpawn2 = 0x163, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2020-01-01 22:05:49 +09:00
|
|
|
SomeCustomiseChangePacketProbably = 0x00CD, // added 5.18
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
PartyList = 0x3bb, // updated 6.35
|
|
|
|
PartyMessage = 0x27a, // updated 6.35
|
|
|
|
HateRank = 0x17a, // updated 6.35
|
|
|
|
HateList = 0x205, // updated 6.35
|
|
|
|
ObjectSpawn = 0x1f4, // updated 6.35
|
|
|
|
ObjectDespawn = 0x2cb, // updated 6.35
|
2021-02-16 22:47:19 +09:00
|
|
|
SilentSetClassJob = 0xF18E, // updated 5.0 - seems to be the case, not sure if it's actually used for anything
|
2023-03-06 23:26:58 -08:00
|
|
|
PlayerSetup = 0x27f, // updated 6.35
|
|
|
|
PlayerStats = 0xee, // updated 6.35
|
|
|
|
ActorOwner = 0x27f, // updated 6.35
|
|
|
|
PlayerStateFlags = 0x32f, // updated 6.35
|
|
|
|
PlayerClassInfo = 0x3af, // updated 6.35
|
|
|
|
PlayerUpdateLook = 0x224, // updated 6.35
|
|
|
|
CharaVisualEffect = 0x339, // updated 6.35
|
|
|
|
|
|
|
|
ModelEquip = 0x381, // updated 6.35
|
|
|
|
Examine = 0x3dc, // updated 6.35
|
|
|
|
CharaNameReq = 0x1c4, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-06-30 20:22:22 +10:00
|
|
|
// nb: see #565 on github
|
2020-11-11 02:07:59 +09:00
|
|
|
UpdateRetainerItemSalePrice = 0xF19F, // updated 5.0
|
2023-03-06 23:26:58 -08:00
|
|
|
RetainerSaleHistory = 0x79, // updated 6.35
|
|
|
|
RetainerInformation = 0x168, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-01-12 22:53:16 +01:00
|
|
|
SetLevelSync = 0x1186, // not updated for 4.4, not sure what it is anymore
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
ItemInfo = 0x220, // updated 6.35
|
|
|
|
ContainerInfo = 0x1ad, // updated 6.35
|
|
|
|
InventoryTransactionFinish = 0x35b, // updated 6.35
|
|
|
|
InventoryTransaction = 0x29f, // updated 6.35
|
|
|
|
CurrencyCrystalInfo = 0x304, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
InventoryActionAck = 0x256, // updated 6.35
|
|
|
|
UpdateInventorySlot = 0x20d, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
HuntingLogEntry = 0x204, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
EventPlay = 0x17f, // updated 6.35
|
|
|
|
EventPlay4 = 0xca, // updated 6.35
|
|
|
|
EventPlay8 = 0x175, // updated 6.35
|
|
|
|
EventPlay16 = 0x26a, // updated 6.35
|
|
|
|
EventPlay32 = 0x74, // updated 6.35
|
|
|
|
EventPlay64 = 0x255, // updated 6.35
|
|
|
|
EventPlay128 = 0x330, // updated 6.35
|
|
|
|
EventPlay255 = 0xdd, // updated 6.35
|
|
|
|
EventStart = 0x8f, // updated 6.35
|
|
|
|
EventFinish = 0x39a, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
EventContinue = 0xaf, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
EventLinkshell = 0x1169,
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
QuestActiveList = 0x218, // updated 6.35
|
|
|
|
QuestUpdate = 0x3c2, // updated 6.35
|
|
|
|
QuestCompleteList = 0x29c, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
QuestFinish = 0x1a7, // updated 6.35
|
|
|
|
MSQTrackerComplete = 0x2bc, // updated 6.35
|
2019-01-08 20:36:31 +11:00
|
|
|
MSQTrackerProgress = 0xF1CD, // updated 4.5 ? this actually looks like the two opcodes have been combined, see #474
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
QuestMessage = 0x0220, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
QuestTracker = 0x2b2, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
Mount = 0x317, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
DirectorVars = 0x215, // updated 6.35
|
2023-01-27 00:33:31 -03:00
|
|
|
SomeDirectorUnk1 = 0x0084, // updated 5.18
|
|
|
|
SomeDirectorUnk2 = 0xF0C1, // updated 5.18
|
2023-03-02 00:19:08 -06:00
|
|
|
SomeDirectorUnk4 = 0x03DD, // updated 5.58h
|
2023-01-27 00:33:31 -03:00
|
|
|
SomeDirectorUnk8 = 0x028A, // updated 5.18
|
2020-01-02 15:10:04 +11:00
|
|
|
SomeDirectorUnk16 = 0x028C, // updated 5.18
|
2023-03-02 00:19:08 -06:00
|
|
|
DirectorPopUp = 0x03DF, // updated 5.58h
|
|
|
|
DirectorPopUp4 = 0x019B, // updated 5.58h
|
|
|
|
DirectorPopUp8 = 0x0271, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-01-01 23:37:32 +11:00
|
|
|
CFAvailableContents = 0xF1FD, // updated 4.2
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
WeatherChange = 0x371, // updated 6.35
|
|
|
|
PlayerTitleList = 0x2b5, // updated 6.35
|
|
|
|
Discovery = 0x390, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
EorzeaTimeOffset = 0x333, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
EquipDisplayFlags = 0x22f, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2020-09-15 11:02:23 -07:00
|
|
|
MiniCactpotInit = 0x0286, // added 5.31
|
2023-03-02 00:19:08 -06:00
|
|
|
ShopMessage = 0x0287, // updated 5.58h
|
2023-03-06 23:26:58 -08:00
|
|
|
LootMessage = 0x216, // updated 6.35
|
|
|
|
ResultDialog = 0x125, // updated 6.35
|
|
|
|
DesynthResult = 0x1da, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-11 23:55:34 +01:00
|
|
|
/// Housing //////////////////////////////////////
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
LandSetInitialize = 0x35a, // updated 6.35
|
|
|
|
LandUpdate = 0x1d6, // updated 6.35
|
|
|
|
LandAvailability = 0x33c, // updated 6.35
|
|
|
|
YardObjectSpawn = 0x231, // updated 6.35
|
|
|
|
HousingIndoorInitialize = 0x33a, // updated 6.35
|
|
|
|
LandPriceUpdate = 0x33f, // updated 6.35
|
|
|
|
LandInfoSign = 0x245, // updated 6.35
|
|
|
|
LandRename = 0x10a, // updated 6.35
|
|
|
|
HousingEstateGreeting = 0x26f, // updated 6.35
|
|
|
|
HousingUpdateLandFlagsSlot = 0x3aa, // updated 6.35
|
|
|
|
HousingLandFlags = 0x124, // updated 6.35
|
|
|
|
HousingShowEstateGuestAccess = 0x332, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
HousingObjectInitialize = 0x167, // updated 6.35
|
|
|
|
HousingInternalObjectSpawn = 0xc2, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
HousingWardInfo = 0x1b5, // updated 6.35
|
|
|
|
HousingObjectMove = 0x14a, // updated 6.35
|
|
|
|
HousingObjectDye = 0xa1, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
SharedEstateSettingsResponse = 0x1ff, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
LandUpdateHouseName = 0x1f7, // updated 6.35
|
|
|
|
LandSetMap = 0x30d, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
CeremonySetActorAppearance = 0x368, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-11 23:55:34 +01:00
|
|
|
//////////////////////////////////////////////////
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
DuelChallenge = 0x0277, // 4.2; this is responsible for opening the ui
|
2023-03-06 23:26:58 -08:00
|
|
|
PerformNote = 0xc6, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
DutyGauge = 0x02E5, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-10-10 22:58:59 +02:00
|
|
|
// daily quest info -> without them sent, login will take longer...
|
2023-03-06 23:26:58 -08:00
|
|
|
DailyQuests = 0x98, // updated 6.35
|
|
|
|
DailyQuestRepeatFlags = 0x2a1, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-06 23:26:58 -08:00
|
|
|
MapUpdate = 0x15c, // updated 6.35
|
|
|
|
MapUpdate4 = 0x2fc, // updated 6.35
|
|
|
|
MapUpdate8 = 0xf4, // updated 6.35
|
|
|
|
MapUpdate16 = 0x320, // updated 6.35
|
|
|
|
MapUpdate32 = 0x3e5, // updated 6.35
|
|
|
|
MapUpdate64 = 0x199, // updated 6.35
|
|
|
|
MapUpdate128 = 0x312, // updated 6.35
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-01-25 22:48:10 +09:00
|
|
|
/// Doman Mahjong //////////////////////////////////////
|
2023-01-27 00:33:31 -03:00
|
|
|
MahjongOpenGui = 0x02A4, // only available in mahjong instance
|
|
|
|
MahjongNextRound = 0x02BD, // initial hands(baipai), # of riichi(wat), winds, honba, score and stuff
|
|
|
|
MahjongPlayerAction = 0x02BE, // tsumo(as in drawing a tile) called chi/pon/kan/riichi
|
2019-01-25 22:48:10 +09:00
|
|
|
MahjongEndRoundTsumo = 0x02BF, // called tsumo
|
2023-01-27 00:33:31 -03:00
|
|
|
MahjongEndRoundRon = 0x2C0, // called ron or double ron (waiting for action must be flagged from discard packet to call)
|
|
|
|
MahjongTileDiscard = 0x02C1, // giri (discarding a tile.) chi(1)/pon(2)/kan(4)/ron(8) flags etc..
|
|
|
|
MahjongPlayersInfo = 0xF2C2, // actor id, name, rating and stuff..
|
2019-01-25 22:48:10 +09:00
|
|
|
// 2C3 and 2C4 are currently unknown
|
|
|
|
MahjongEndRoundDraw = 0x02C5, // self explanatory
|
2023-01-27 00:33:31 -03:00
|
|
|
MahjongEndGame = 0x02C6, // finished oorasu(all-last) round; shows a result screen.
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2021-02-16 23:04:31 +09:00
|
|
|
/// Airship & Submarine //////////////////////////////////////
|
2023-03-06 23:26:58 -08:00
|
|
|
AirshipTimers = 0x1e5, // updated 6.35
|
|
|
|
AirshipStatus = 0x2f3, // updated 6.35
|
|
|
|
AirshipStatusList = 0x335, // updated 6.35
|
|
|
|
AirshipExplorationResult = 0x28f, // updated 6.35
|
|
|
|
|
|
|
|
SubmarineTimers = 0xa5, // updated 6.35
|
|
|
|
SubmarineProgressionStatus = 0x292, // updated 6.35
|
|
|
|
SubmarineStatusList = 0x76, // updated 6.35
|
|
|
|
SubmarineExplorationResult = 0x196, // updated 6.35
|
|
|
|
|
|
|
|
EnvironmentControl = 0x126, // updated 6.35
|
|
|
|
IslandWorkshopSupplyDemand = 0x1b2, // updated 6.35
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
};
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
/**
|
2023-01-27 00:33:31 -03:00
|
|
|
* Client IPC Zone Type Codes.
|
|
|
|
*/
|
2018-11-01 23:56:43 +01:00
|
|
|
enum ClientZoneIpcType : uint16_t
|
|
|
|
{
|
2023-03-02 00:19:08 -06:00
|
|
|
PingHandler = 0x0273, // updated 6.31h
|
|
|
|
InitHandler = 0x03a8, // updated 6.31h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
FinishLoadingHandler = 0x032d, // updated 6.31h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
CFCommenceHandler = 0x0381, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
CFCancelHandler = 0x02B2, // updated 5.58h
|
|
|
|
CFRegisterDuty = 0x01BD, // updated 5.58h
|
|
|
|
CFRegisterRoulette = 0x037A, // updated 5.58h
|
|
|
|
PlayTimeHandler = 0x02B7, // updated 5.58h
|
|
|
|
LogoutHandler = 0x0387, // updated 6.31h
|
|
|
|
CancelLogout = 0x01e3, // updated 6.31h
|
2023-01-27 00:33:31 -03:00
|
|
|
CFDutyInfoHandler = 0xF078, // updated 4.2
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
SocialReqSendHandler = 0x00D7, // updated 5.58h
|
|
|
|
SocialResponseHandler = 0x023B, // updated 5.58h
|
|
|
|
CreateCrossWorldLS = 0x035D, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ChatHandler = 0x00f1, // Updated 6.31h
|
2020-11-11 02:07:59 +09:00
|
|
|
PartyChatHandler = 0x0065,
|
2023-03-02 00:19:08 -06:00
|
|
|
PartySetLeaderHandler = 0x036C, // updated 5.58h
|
|
|
|
LeavePartyHandler = 0x019D, // updated 5.58h
|
|
|
|
KickPartyMemberHandler = 0x0262, // updated 5.58h
|
|
|
|
DisbandPartyHandler = 0x0276, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-01-27 18:47:24 -03:00
|
|
|
SocialListHandler = 0x0200, // updated 6.31
|
2023-03-02 00:19:08 -06:00
|
|
|
SetSearchInfoHandler = 0x0368, // updated 6.31h
|
|
|
|
ReqSearchInfoHandler = 0x03b0, // updated 6.31h
|
2019-06-28 20:32:42 +10:00
|
|
|
ReqExamineSearchCommentHandler = 0x00E7, // updated 5.0
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ReqRemovePlayerFromBlacklist = 0x00B4, // updated 5.58h
|
|
|
|
BlackListHandler = 0x010c, // updated 6.31h
|
|
|
|
PlayerSearchHandler = 0x037D, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
LinkshellListHandler = 0x03B6, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
MarketBoardRequestItemListingInfo = 0x00F4, // updated 5.58h
|
|
|
|
MarketBoardRequestItemListings = 0x0122, // updated 5.58h
|
|
|
|
MarketBoardSearch = 0x0082, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ReqExamineFcInfo = 0x037B, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-01-27 18:47:24 -03:00
|
|
|
FcInfoReqHandler = 0x9999, // unknown
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-07-28 17:27:57 -07:00
|
|
|
FreeCompanyUpdateShortMessageHandler = 0x0123, // added 5.0
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ReqMarketWishList = 0x00C3, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
ReqJoinNoviceNetwork = 0x0129, // updated 4.2
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ReqCountdownInitiate = 0x03e1, // updated 6.31h
|
|
|
|
ReqCountdownCancel = 0x023a, // updated 6.31h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ZoneLineHandler = 0x00ce, // updated 6.31h
|
|
|
|
ClientTrigger = 0x0244, // updated 6.31h
|
|
|
|
DiscoveryHandler = 0x038B, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-01-26 04:25:51 -03:00
|
|
|
PlaceFieldMarkerPreset = 0x204, // updated 6.30h
|
2023-01-27 00:33:31 -03:00
|
|
|
PlaceFieldMarker = 0x38e, // updated 6.30h
|
2023-03-02 00:19:08 -06:00
|
|
|
SkillHandler = 0x0133, // updated 6.31h
|
|
|
|
GMCommand1 = 0x0278, // updated 6.31h
|
|
|
|
GMCommand2 = 0x03d8, // updated 6.31h
|
|
|
|
AoESkillHandler = 0x0152, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
UpdatePositionHandler = 0x01f7, // updated 6.31h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
InventoryModifyHandler = 0x01a2, // updated 6.31h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
InventoryEquipRecommendedItems = 0x01C9, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
ReqPlaceHousingItem = 0x02D4, // updated 5.58h
|
|
|
|
BuildPresetHandler = 0x0223, // updated 5.58h
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
TalkEventHandler = 0x0205, // updated 6.31h
|
|
|
|
EmoteEventHandler = 0x00B0, // updated 5.58h
|
|
|
|
WithinRangeEventHandler = 0x02B6, // updated 5.58h
|
|
|
|
OutOfRangeEventHandler = 0x00b4, // updated 6.31h
|
|
|
|
EnterTeriEventHandler = 0x014e, // updated 6.31h
|
|
|
|
ShopEventHandler = 0x0384, // updated 5.58h
|
|
|
|
ReturnEventHandler = 0x0119, // updated 6.31h
|
|
|
|
TradeReturnEventHandler = 0x0100, // updated 6.31h
|
|
|
|
TradeReturnEventHandler2 = 0x023C, // updated 5.58h
|
|
|
|
EventYield2Handler = 0x021D, // updated 5.58h
|
|
|
|
EventYield16Handler = 0x0207, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-01-27 18:47:24 -03:00
|
|
|
LinkshellEventHandler = 0x9999, // unknown
|
2023-01-27 20:55:25 -03:00
|
|
|
LinkshellEventHandler1 = 0x9999, // unknown
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-01-26 04:25:51 -03:00
|
|
|
ReqEquipDisplayFlagsChange = 0x03BC, // updated 6.30h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
LandRenameHandler = 0x028E, // updated 5.58h
|
|
|
|
HousingUpdateHouseGreeting = 0x0343, // updated 5.58h
|
2023-01-27 20:55:25 -03:00
|
|
|
HousingUpdateObjectPosition = 0x9999, // unknown
|
2023-03-02 00:19:08 -06:00
|
|
|
HousingEditExterior = 0x027B, // updated 5.58h
|
|
|
|
HousingEditInterior = 0x02E3, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
SetSharedEstateSettings = 0x00D2, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
UpdatePositionInstance = 0x03bd, // Updated 6.31h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
PerformNoteHandler = 0x0243, // updated 5.58h
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2023-03-02 00:19:08 -06:00
|
|
|
WorldInteractionHandler = 0x0274, // updated 5.58h
|
2023-01-27 00:33:31 -03:00
|
|
|
Dive = 0x018C, // updated 6.30h
|
2018-11-01 23:56:43 +01:00
|
|
|
};
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Chat Connection IPC Codes
|
|
|
|
/**
|
2023-01-27 00:33:31 -03:00
|
|
|
* Server IPC Chat Type Codes.
|
|
|
|
*/
|
2018-11-01 23:56:43 +01:00
|
|
|
enum ServerChatIpcType : uint16_t
|
|
|
|
{
|
2023-01-27 00:33:31 -03:00
|
|
|
Tell = 0x0064, // updated for sb
|
2021-01-23 17:17:39 +01:00
|
|
|
PublicContentTell = 0x00FB, // added 4.5, this is used when receiving a /tell in PublicContent instances such as Eureka or Bozja
|
2018-11-01 23:56:43 +01:00
|
|
|
TellErrNotFound = 0x0066,
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2019-08-07 21:42:38 -07:00
|
|
|
FreeCompanyEvent = 0x012C, // added 5.0
|
2018-11-01 23:56:43 +01:00
|
|
|
};
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
/**
|
2023-01-27 00:33:31 -03:00
|
|
|
* Client IPC Chat Type Codes.
|
|
|
|
*/
|
2018-11-01 23:56:43 +01:00
|
|
|
enum ClientChatIpcType : uint16_t
|
|
|
|
{
|
|
|
|
TellReq = 0x0064,
|
2021-01-23 17:17:39 +01:00
|
|
|
PublicContentTellReq = 0x0326, // updated 5.35 hotfix, this is used when sending a /tell in PublicContent instances such as Eureka or Bozja
|
2018-11-01 23:56:43 +01:00
|
|
|
};
|
2021-09-14 00:18:37 +00:00
|
|
|
|
2018-11-01 23:56:43 +01:00
|
|
|
}
|
2023-01-27 00:33:31 -03:00
|
|
|
|
2021-09-14 00:18:37 +00:00
|
|
|
#endif /*_CORE_NETWORK_PACKETS_IPCS_H*/
|