2017-08-22 17:29:03 +02:00
# ifndef _CORE_NETWORK_PACKETS_IPCS_H
# define _CORE_NETWORK_PACKETS_IPCS_H
2018-06-02 13:38:00 +02:00
# include <stdint.h>
2017-08-22 17:29:03 +02:00
2018-11-29 16:55:48 +01:00
namespace Sapphire : : Network : : Packets
2018-08-29 21:40:59 +02:00
{
2018-11-01 23:56:43 +01:00
////////////////////////////////////////////////////////////////////////////////
/// Lobby Connection IPC Codes
/**
* Server IPC Lobby Type Codes .
*/
enum ServerLobbyIpcType : uint16_t
{
LobbyError = 0x0002 ,
LobbyServiceAccountList = 0x000C ,
LobbyCharList = 0x000D ,
LobbyCharCreate = 0x000E ,
LobbyEnterWorld = 0x000F ,
LobbyServerList = 0x0015 ,
LobbyRetainerList = 0x0017 ,
} ;
2018-08-29 21:40:59 +02:00
2018-11-01 23:56:43 +01:00
/**
* Client IPC Lobby Type Codes .
*/
enum ClientLobbyIpcType : uint16_t
{
ReqCharList = 0x0003 ,
ReqEnterWorld = 0x0004 ,
ClientVersionInfo = 0x0005 ,
2018-08-29 21:40:59 +02:00
2018-11-01 23:56:43 +01:00
ReqCharDelete = 0x000A ,
ReqCharCreate = 0x000B ,
} ;
2018-08-29 21:40:59 +02:00
2018-11-01 23:56:43 +01:00
////////////////////////////////////////////////////////////////////////////////
/// Zone Connection IPC Codes
/**
* Server IPC Zone Type Codes .
*/
enum ServerZoneIpcType : uint16_t
{
2021-07-27 07:33:55 +09:00
Ping = 0x0289 , // updated 5.55 hotfix
Init = 0x0203 , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
2021-07-27 07:33:55 +09:00
ActorFreeSpawn = 0x01C5 , // updated 5.55 hotfix
InitZone = 0x021C , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
2021-07-27 07:33:55 +09:00
EffectResult = 0x01E9 , // updated 5.55 hotfix
ActorControl = 0x01C8 , // updated 5.55 hotfix
ActorControlSelf = 0x035A , // updated 5.55 hotfix
ActorControlTarget = 0x0338 , // updated 5.55 hotfix
2019-10-29 20:23:06 +11:00
/*!
* @ brief Used when resting
*/
2021-07-27 07:33:55 +09:00
UpdateHpMpTp = 0x0077 , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
///////////////////////////////////////////////////
2020-05-01 20:19:10 +09:00
ChatBanned = 0xF06B ,
2021-07-27 07:33:55 +09:00
Playtime = 0x0348 , // updated 5.55 hotfix
Logout = 0x0292 , // updated 5.55 hotfix
CFNotify = 0x00DC , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
CFMemberStatus = 0x0079 ,
2021-07-27 07:33:55 +09:00
CFDutyInfo = 0x02A3 , // updated 5.55 hotfix
2020-03-17 22:23:26 +09:00
CFPlayerInNeed = 0xF07F ,
2021-07-27 07:33:55 +09:00
CFPreferredRole = 0x02B6 , // updated 5.55 hotfix
CFCancel = 0x0262 , // updated 5.55 hotfix
2020-04-24 17:00:48 +09:00
SocialRequestError = 0xF0AD ,
2018-11-01 23:56:43 +01:00
2021-07-27 07:33:55 +09:00
CFRegistered = 0x0114 , // updated 5.55 hotfix
SocialRequestResponse = 0x033C , // updated 5.55 hotfix
SocialMessage = 0x0304 , // updated 5.55 hotfix
SocialMessage2 = 0x01B4 , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
CancelAllianceForming = 0x00C6 , // updated 4.2
2018-08-29 21:40:59 +02:00
2019-06-30 21:08:51 +10:00
LogMessage = 0x00D0 ,
2021-07-27 07:33:55 +09:00
Chat = 0x0384 , // updated 5.55 hotfix
2020-11-11 02:07:59 +09:00
PartyChat = 0x0065 ,
2019-04-26 17:47:59 +10:00
2020-05-01 20:19:10 +09:00
WorldVisitList = 0xF0FE , // added 4.5
2019-04-26 17:47:59 +10:00
2021-07-27 07:33:55 +09:00
SocialList = 0x00DD , // updated 5.55 hotfix
2018-09-10 14:34:24 +01:00
2021-07-27 07:33:55 +09:00
ExamineSearchInfo = 0x022A , // updated 5.55 hotfix
UpdateSearchInfo = 0x03DF , // updated 5.55 hotfix
InitSearchInfo = 0x00F8 , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
ExamineSearchComment = 0x0102 , // updated 4.1
2018-09-10 14:34:24 +01:00
2021-07-27 07:33:55 +09:00
ServerNoticeShort = 0x032D , // updated 5.55 hotfix
ServerNotice = 0x02CA , // updated 5.55 hotfix
SetOnlineStatus = 0x03A9 , // updated 5.55 hotfix
2018-11-20 22:52:57 +11:00
2020-05-01 20:19:10 +09:00
CountdownInitiate = 0x0237 , // updated 5.25
2020-01-01 22:05:49 +09:00
CountdownCancel = 0x00D9 , // updated 5.18
2018-02-02 18:34:20 +01:00
2019-10-29 21:14:44 +11:00
PlayerAddedToBlacklist = 0x033F , // updated 5.1
PlayerRemovedFromBlacklist = 0x0385 , // updated 5.1
2021-07-27 07:33:55 +09:00
BlackList = 0x0093 , // updated 5.55 hotfix
2019-07-06 15:00:13 +10:00
2021-07-27 07:33:55 +09:00
LinkshellList = 0x0160 , // updated 5.55 hotfix
2018-02-04 16:40:29 +11:00
2020-05-01 20:19:10 +09:00
MailDeleteRequest = 0xF12B , // updated 5.0
2019-07-28 17:27:57 -07:00
2019-06-30 18:32:44 +10:00
// 12D - 137 - constant gap between 4.5x -> 5.0
2020-11-11 02:07:59 +09:00
ReqMoogleMailList = 0xF138 , // updated 5.0
ReqMoogleMailLetter = 0xF139 , // updated 5.0
2019-06-30 21:08:51 +10:00
MailLetterNotification = 0x013A , // updated 5.0
2017-10-10 23:48:02 +02:00
2020-11-11 02:07:59 +09:00
MarketTaxRates = 0x01F8 , // updated 5.35 hotfix
2018-12-02 23:26:21 +11:00
2021-07-27 07:33:55 +09:00
MarketBoardSearchResult = 0x039D , // updated 5.55 hotfix
MarketBoardItemListingCount = 0x0277 , // updated 5.55 hotfix
MarketBoardItemListingHistory = 0x0320 , // updated 5.55 hotfix
MarketBoardItemListing = 0x026B , // updated 5.55 hotfix
2020-08-12 11:37:34 -07:00
2019-01-08 19:36:22 +11:00
CharaFreeCompanyTag = 0x013B , // updated 4.5
FreeCompanyBoardMsg = 0x013C , // updated 4.5
2021-07-27 07:33:55 +09:00
FreeCompanyInfo = 0x0332 , // updated 5.55 hotfix
2020-05-01 20:19:10 +09:00
ExamineFreeCompanyInfo = 0xF13E , // updated 4.5
2018-09-10 14:34:24 +01:00
2020-05-01 20:19:10 +09:00
FreeCompanyUpdateShortMessage = 0xF157 , // added 5.0
2019-07-28 17:27:57 -07:00
2021-07-27 07:33:55 +09:00
StatusEffectList = 0x018A , // updated 5.55 hotfix
2020-01-01 22:05:49 +09:00
EurekaStatusEffectList = 0x0167 , // updated 5.18
BossStatusEffectList = 0x0312 , // added 5.1
2021-07-27 07:33:55 +09:00
Effect = 0x0283 , // updated 5.55 hotfix
AoeEffect8 = 0x025B , // updated 5.55 hotfix
AoeEffect16 = 0x015D , // updated 5.55 hotfix
AoeEffect24 = 0x0091 , // updated 5.55 hotfix
AoeEffect32 = 0x0169 , // updated 5.55 hotfix
PersistantEffect = 0x035E , // updated 5.55 hotfix
2018-09-18 20:56:12 +10:00
2021-07-27 07:33:55 +09:00
GCAffiliation = 0x0258 , // updated 5.55 hotfix
2018-05-26 09:25:56 +02:00
2021-07-27 07:33:55 +09:00
PlayerSpawn = 0x02C1 , // updated 5.55 hotfix
NpcSpawn = 0x00F1 , // updated 5.55 hotfix
2020-08-12 11:37:34 -07:00
NpcSpawn2 = 0x01CB , // ( Bigger statuseffectlist? ) updated 5.3
2021-07-27 07:33:55 +09:00
ActorMove = 0x009D , // updated 5.55 hotfix
2019-01-19 22:56:07 +01:00
2021-07-27 07:33:55 +09:00
ActorSetPos = 0x0266 , // updated 5.55 hotfix
2018-02-04 14:16:09 +01:00
2021-07-27 07:33:55 +09:00
ActorCast = 0x00A9 , // updated 5.55 hotfix
2020-01-01 22:05:49 +09:00
SomeCustomiseChangePacketProbably = 0x00CD , // added 5.18
2019-11-12 10:26:36 -08:00
2021-07-27 07:33:55 +09:00
PartyList = 0x01B7 , // updated 5.55 hotfix
PartyMessage = 0x01C1 , // updated 5.55 hotfix
HateRank = 0x006E , // updated 5.55 hotfix
HateList = 0x01F1 , // updated 5.55 hotfix
ObjectSpawn = 0x00FE , // updated 5.55 hotfix
ObjectDespawn = 0x0201 , // updated 5.55 hotfix
UpdateClassInfo = 0x0065 , // updated 5.55 hotfix
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
2021-07-27 07:33:55 +09:00
PlayerSetup = 0x01E7 , // updated 5.55 hotfix
PlayerStats = 0x012E , // updated 5.55 hotfix
ActorOwner = 0x00EB , // updated 5.55 hotfix
PlayerStateFlags = 0x0190 , // updated 5.55 hotfix
PlayerClassInfo = 0x022B , // updated 5.55 hotfix
CharaVisualEffect = 0x033A , // updated 5.55 hotfix
2021-02-16 22:47:19 +09:00
2021-07-27 07:33:55 +09:00
ModelEquip = 0x0264 , // updated 5.55 hotfix
Examine = 0x027C , // updated 5.55 hotfix
CharaNameReq = 0x02EC , // updated 5.55 hotfix
2019-01-19 22:56:07 +01: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
2020-08-12 11:37:34 -07:00
RetainerSaleHistory = 0x020E , // updated 5.21 hotfix
2021-07-27 07:33:55 +09:00
RetainerInformation = 0x02DE , // updated 5.55 hotfix
2019-06-30 20:22:22 +10:00
2019-01-12 22:53:16 +01:00
SetLevelSync = 0x1186 , // not updated for 4.4, not sure what it is anymore
2018-09-18 20:20:25 +10:00
2021-07-27 07:33:55 +09:00
ItemInfo = 0x02D3 , // updated 5.55 hotfix
ContainerInfo = 0x00CF , // updated 5.55 hotfix
InventoryTransactionFinish = 0x02EE , // updated 5.55 hotfix
InventoryTransaction = 0x02FA , // updated 5.55 hotfix
CurrencyCrystalInfo = 0x0166 , // updated 5.55 hotfix
2019-01-19 22:56:07 +01:00
2021-07-27 07:33:55 +09:00
InventoryActionAck = 0x027D , // updated 5.55 hotfix
UpdateInventorySlot = 0x0073 , // updated 5.55 hotfix
2018-09-18 20:20:25 +10:00
2021-07-27 07:33:55 +09:00
HuntingLogEntry = 0x0080 , // updated 5.55 hotfix
2019-03-24 16:08:08 +01:00
2021-07-27 07:33:55 +09:00
EventPlay = 0x0369 , // updated 5.55 hotfix
EventPlay4 = 0x0247 , // updated 5.55 hotfix
EventPlay8 = 0x0227 , // updated 5.55 hotfix
EventPlay16 = 0x00C5 , // updated 5.55 hotfix
EventPlay32 = 0x0184 , // updated 5.55 hotfix
EventPlay64 = 0x011A , // updated 5.55 hotfix
EventPlay128 = 0x01B3 , // updated 5.55 hotfix
EventPlay255 = 0x0240 , // updated 5.55 hotfix
2018-06-02 18:09:29 +02:00
2021-07-27 07:33:55 +09:00
EventYield = 0x02CB , // updated 5.55 hotfix
2021-02-06 05:18:26 +09:00
//EventYield4 = 0x0000,
//EventYield8 = 0x0000,
//EventYield16 = 0x0000,
//EventYield32 = 0x0000,
//EventYield64 = 0x0000,
//EventYield128 = 0x0000,
//EventYield255 = 0x0000,
2021-07-27 07:33:55 +09:00
EventStart = 0x0145 , // updated 5.55 hotfix
EventFinish = 0x0174 , // updated 5.55 hotfix
2017-10-15 01:43:57 +02:00
2018-11-01 23:56:43 +01:00
EventLinkshell = 0x1169 ,
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
QuestActiveList = 0x0381 , // updated 5.55 hotfix
QuestUpdate = 0x031B , // updated 5.55 hotfix
QuestCompleteList = 0x031A , // updated 5.55 hotfix
2017-08-27 02:03:27 +02:00
2021-07-27 07:33:55 +09:00
QuestFinish = 0x00E0 , // updated 5.55 hotfix
2020-11-11 02:07:59 +09:00
MSQTrackerComplete = 0xF1D6 , // updated 5.0
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
2017-08-27 02:03:27 +02:00
2021-07-27 07:33:55 +09:00
QuestMessage = 0x036E , // updated 5.55 hotfix
2017-10-15 01:43:57 +02:00
2021-07-27 07:33:55 +09:00
QuestTracker = 0x0294 , // updated 5.55 hotfix
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
Mount = 0x016B , // updated 5.55 hotfix
2018-06-02 18:09:29 +02:00
2021-07-27 07:33:55 +09:00
DirectorVars = 0x0391 , // updated 5.55 hotfix
2020-01-02 15:10:04 +11:00
SomeDirectorUnk1 = 0x0084 , // updated 5.18
2020-05-11 06:25:25 +09:00
SomeDirectorUnk2 = 0xF0C1 , // updated 5.18
2021-07-27 07:33:55 +09:00
SomeDirectorUnk4 = 0x0101 , // updated 5.55 hotfix
2020-01-02 15:10:04 +11:00
SomeDirectorUnk8 = 0x028A , // updated 5.18
SomeDirectorUnk16 = 0x028C , // updated 5.18
2021-07-27 07:33:55 +09:00
DirectorPopUp = 0xF162 , // updated 5.18 (could be 0x02C2 in 5.55, needs confirmation - display dialogue pop-ups in duties and FATEs, for example, Teraflare's countdown
2020-01-02 15:10:04 +11:00
DirectorPopUp4 = 0x0214 , // updated 5.18
DirectorPopUp8 = 0x00F8 , // updated 5.18
2018-02-02 18:34:20 +01:00
2019-01-01 23:37:32 +11:00
CFAvailableContents = 0xF1FD , // updated 4.2
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
WeatherChange = 0x0386 , // updated 5.55 hotfix
PlayerTitleList = 0x0181 , // updated 5.55 hotfix
Discovery = 0x019E , // updated 5.55 hotfix
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
EorzeaTimeOffset = 0x01AE , // updated 5.55 hotfix
2018-06-02 18:09:29 +02:00
2021-07-27 07:33:55 +09:00
EquipDisplayFlags = 0x01A3 , // updated 5.55 hotfix
2018-02-07 00:00:48 +01:00
2020-09-15 11:02:23 -07:00
MiniCactpotInit = 0x0286 , // added 5.31
2021-07-27 07:33:55 +09:00
ShopMessage = 0x0162 , // updated 5.55 hotfix
LootMessage = 0x0299 , // updated 5.55 hotfix
ResultDialog = 0x025D , // updated 5.55 hotfix
DesynthResult = 0x0323 , // updated 5.55 hotfix
2020-09-15 11:02:23 -07:00
2018-11-11 23:55:34 +01:00
/// Housing //////////////////////////////////////
2021-07-27 07:33:55 +09:00
LandSetInitialize = 0x01E4 , // updated 5.55 hotfix
LandUpdate = 0x012B , // updated 5.55 hotfix
YardObjectSpawn = 0x0249 , // updated 5.55 hotfix
HousingIndoorInitialize = 0x0133 , // updated 5.55 hotfix
LandPriceUpdate = 0x00AA , // updated 5.55 hotfix
LandInfoSign = 0x023D , // updated 5.55 hotfix
LandRename = 0x0158 , // updated 5.55 hotfix
HousingEstateGreeting = 0x018D , // updated 5.55 hotfix
HousingUpdateLandFlagsSlot = 0x03C8 , // updated 5.55 hotfix
HousingLandFlags = 0x037E , // updated 5.55 hotfix
HousingShowEstateGuestAccess = 0x01F8 , // updated 5.55 hotfix
2019-06-28 21:15:22 +10:00
2021-07-27 07:33:55 +09:00
HousingObjectInitialize = 0x0331 , // updated 5.55 hotfix
HousingInternalObjectSpawn = 0x0092 , // updated 5.55 hotfix
2019-06-28 21:15:22 +10:00
2021-07-27 07:33:55 +09:00
HousingWardInfo = 0x0279 , // updated 5.55 hotfix
HousingObjectMove = 0x0239 , // updated 5.55 hotfix
2017-08-28 18:36:51 +02:00
2021-07-27 07:33:55 +09:00
SharedEstateSettingsResponse = 0x0263 , // updated 5.55 hotfix
2017-10-05 20:24:58 +02:00
2021-07-27 07:33:55 +09:00
LandUpdateHouseName = 0x01D6 , // updated 5.55 hotfix
2018-11-28 00:05:57 +11:00
2021-07-27 07:33:55 +09:00
LandSetMap = 0x01D3 , // updated 5.55 hotfix
2018-11-11 23:55:34 +01:00
//////////////////////////////////////////////////
2018-11-01 23:56:43 +01:00
DuelChallenge = 0x0277 , // 4.2; this is responsible for opening the ui
2021-07-27 07:33:55 +09:00
PerformNote = 0x038B , // updated 5.55 hotfix
2018-09-26 03:22:30 +10:00
2021-07-27 07:33:55 +09:00
PrepareZoning = 0x00A4 , // updated 5.55 hotfix
ActorGauge = 0x03B1 , // updated 5.55 hotfix
DutyGauge = 0x01D3 , // updated 5.55 hotfix
2018-07-15 23:59:15 +02:00
2019-10-10 22:58:59 +02:00
// daily quest info -> without them sent, login will take longer...
2021-07-27 07:33:55 +09:00
DailyQuests = 0x0371 , // updated 5.55 hotfix
DailyQuestRepeatFlags = 0x021F , // updated 5.55 hotfix
2017-08-28 18:36:51 +02:00
2019-01-25 22:48:10 +09:00
/// Doman Mahjong //////////////////////////////////////
2019-06-30 20:47:39 +10:00
MahjongOpenGui = 0x02A4 , // only available in mahjong instance
2019-01-25 22:48:10 +09:00
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
MahjongEndRoundTsumo = 0x02BF , // called tsumo
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..
2021-07-27 07:33:55 +09:00
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
MahjongEndGame = 0x02C6 , // finished oorasu(all-last) round; shows a result screen.
2021-02-16 23:04:31 +09:00
/// Airship & Submarine //////////////////////////////////////
2021-07-27 07:33:55 +09:00
AirshipExplorationResult = 0x007C , // updated 5.55 hotfix
AirshipStatus = 0x00AB , // updated 5.55 hotfix
AirshipStatusList = 0x027B , // updated 5.55 hotfix
AirshipTimers = 0x02A5 , // updated 5.55 hotfix
SubmarineExplorationResult = 0x0099 , // updated 5.55 hotfix
SubmarineProgressionStatus = 0x0081 , // updated 5.55 hotfix
SubmarineStatusList = 0x0072 , // updated 5.55 hotfix
SubmarineTimers = 0x037A , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
} ;
2018-02-02 18:34:20 +01:00
2018-11-01 23:56:43 +01:00
/**
* Client IPC Zone Type Codes .
*/
enum ClientZoneIpcType : uint16_t
{
2021-07-27 07:33:55 +09:00
PingHandler = 0x03AD , // updated 5.55 hotfix
InitHandler = 0x03DA , // updated 5.55 hotfix
2017-08-22 17:29:03 +02:00
2021-07-27 07:33:55 +09:00
FinishLoadingHandler = 0x0203 , // updated 5.55 hotfix
2017-08-22 17:29:03 +02:00
2021-07-27 07:33:55 +09:00
CFCommenceHandler = 0xF118 , // updated 5.35 hotfix
2017-08-22 17:29:03 +02:00
2020-11-11 02:07:59 +09:00
CFCancelHandler = 0x0332 , // updated 5.35 hotfix
2021-02-22 20:25:37 +01:00
CFRegisterDuty = 0x033C , // updated 5.45 hotfix
CFRegisterRoulette = 0x0121 , // updated 5.45 hotfix
2021-07-27 07:33:55 +09:00
PlayTimeHandler = 0x0365 , // updated 5.55 hotfix
LogoutHandler = 0x039B , // updated 5.55 hotfix
CancelLogout = 0x010F , // updated 5.55 hotfix
CFDutyInfoHandler = 0xF078 , // updated 4.2
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
SocialReqSendHandler = 0x028E , // updated 5.55 hotfix
SocialResponseHandler = 0x0373 , // updated 5.55 hotfix
CreateCrossWorldLS = 0x028D , // updated 5.55 hotfix
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
ChatHandler = 0x01B8 , // updated 5.55 hotfix
2020-11-11 02:07:59 +09:00
PartyChatHandler = 0x0065 ,
2021-07-27 07:33:55 +09:00
PartySetLeaderHandler = 0x0142 , // updated 5.55 hotfix
LeavePartyHandler = 0x026C , // updated 5.55 hotfix
KickPartyMemberHandler = 0x0379 , // updated 5.55 hotfix
2021-02-19 02:36:05 +09:00
DisbandPartyHandler = 0x037A , // updated 5.45 hotfix
2017-08-22 17:29:03 +02:00
2021-07-27 07:33:55 +09:00
SocialListHandler = 0x00F2 , // updated 5.55 hotfix
SetSearchInfoHandler = 0x009C , // updated 5.55 hotfix
ReqSearchInfoHandler = 0x00B1 , // updated 5.55 hotfix
2019-06-28 20:32:42 +10:00
ReqExamineSearchCommentHandler = 0x00E7 , // updated 5.0
2017-08-22 17:29:03 +02:00
2019-06-30 20:06:14 +10:00
ReqRemovePlayerFromBlacklist = 0x00F1 , // updated 5.0
2021-07-27 07:33:55 +09:00
BlackListHandler = 0x03DE , // updated 5.55 hotfix
2019-06-30 20:06:14 +10:00
PlayerSearchHandler = 0x00F4 , // updated 5.0
2018-02-02 18:34:20 +01:00
2021-07-27 07:33:55 +09:00
LinkshellListHandler = 0x0291 , // updated 5.55 hotfix
2018-02-02 18:34:20 +01:00
2019-01-08 22:50:16 +11:00
MarketBoardRequestItemListingInfo = 0x0102 , // updated 4.5
MarketBoardRequestItemListings = 0x0103 , // updated 4.5
MarketBoardSearch = 0x0107 , // updated 4.5
2018-12-02 23:26:21 +11:00
2019-01-08 20:36:31 +11:00
ReqExamineFcInfo = 0x0113 , // updated 4.1
2017-08-22 17:29:03 +02:00
2018-11-01 23:56:43 +01:00
FcInfoReqHandler = 0x011A , // updated 4.2
2017-08-22 17:29:03 +02:00
2019-07-28 17:27:57 -07:00
FreeCompanyUpdateShortMessageHandler = 0x0123 , // added 5.0
2018-11-01 23:56:43 +01:00
ReqMarketWishList = 0x012C , // updated 4.3
2017-08-22 17:29:03 +02:00
2018-11-01 23:56:43 +01:00
ReqJoinNoviceNetwork = 0x0129 , // updated 4.2
2018-07-22 16:54:01 +10:00
2021-01-23 17:17:39 +01:00
ReqCountdownInitiate = 0x025F , // updated 5.35 hotfix
2020-05-01 20:19:10 +09:00
ReqCountdownCancel = 0x0244 , // updated 5.25
2017-08-22 17:29:03 +02:00
2021-07-27 07:33:55 +09:00
ZoneLineHandler = 0x01C2 , // updated 5.55 hotfix
ClientTrigger = 0x0337 , // updated 5.55 hotfix
2020-11-11 02:07:59 +09:00
DiscoveryHandler = 0x00E3 , // updated 5.35 hotfix
2018-02-25 15:16:42 +11:00
2021-07-27 07:33:55 +09:00
PlaceFieldMarkerPreset = 0xF10C , // updated 5.55 hotfix
PlaceFieldMarker = 0xF2E2 , // updated 5.55 hotfix
SkillHandler = 0x02A2 , // updated 5.55 hotfix
GMCommand1 = 0x01F0 , // updated 5.55 hotfix
GMCommand2 = 0x0068 , // updated 5.55 hotfix
AoESkillHandler = 0x02F6 , // updated 5.55 hotfix
2018-02-04 16:40:29 +11:00
2021-07-27 07:33:55 +09:00
UpdatePositionHandler = 0x024B , // updated 5.55 hotfix
2017-08-22 17:29:03 +02:00
2021-07-27 07:33:55 +09:00
InventoryModifyHandler = 0x01D7 , // updated 5.55 hotfix
2019-11-12 10:26:36 -08:00
2021-02-22 20:25:37 +01:00
InventoryEquipRecommendedItems = 0x0186 , // updated 5.45 hotfix
2018-07-06 20:32:36 +10:00
2021-07-27 07:33:55 +09:00
ReqPlaceHousingItem = 0x023E , // updated 5.55 hotfix
BuildPresetHandler = 0x0374 , // updated 5.55 hotfix
2018-12-26 18:11:18 +11:00
2021-07-27 07:33:55 +09:00
TalkEventHandler = 0x01E9 , // updated 5.55 hotfix
EmoteEventHandler = 0xF35A , // updated 5.55 hotfix
WithinRangeEventHandler = 0x035A , // updated 5.55 hotfix
OutOfRangeEventHandler = 0x0338 , // updated 5.55 hotfix
EnterTeriEventHandler = 0x0077 , // updated 5.55 hotfix
ShopEventHandler = 0x0168 , // updated 5.55 hotfix
EventYieldHandler = 0x02A0 , // updated 5.55 hotfix
ReturnEventHandler = 0x015D , // updated 5.55 hotfix
TradeReturnEventHandler = 0x0091 , // updated 5.55 hotfix
TradeReturnEventHandler2 = 0x0169 , // updated 5.55 hotfix
2017-08-22 17:29:03 +02:00
2019-03-17 22:26:14 +01:00
LinkshellEventHandler = 0x016B , // updated 4.5
LinkshellEventHandler1 = 0x016C , // updated 4.5
2017-08-22 17:29:03 +02:00
2021-07-27 07:33:55 +09:00
ReqEquipDisplayFlagsChange = 0x032B , // updated 5.55 hotfix
2019-06-28 21:06:23 +10:00
2021-07-27 07:33:55 +09:00
LandRenameHandler = 0x0206 , // updated 5.55 hotfix
HousingUpdateHouseGreeting = 0x0330 , // updated 5.55 hotfix
HousingUpdateObjectPosition = 0x03A5 , // updated 5.55 hotfix
HousingEditAppearance = 0x00D7 , // updated 5.55 hotfix
2018-11-11 14:27:39 +01:00
2021-07-27 07:33:55 +09:00
SetSharedEstateSettings = 0x03DC , // updated 5.55 hotfix
2017-08-23 23:58:14 +02:00
2021-07-27 07:33:55 +09:00
UpdatePositionInstance = 0x009D , // updated 5.55 hotfix
2019-07-14 17:34:55 +10:00
2021-07-27 07:33:55 +09:00
PerformNoteHandler = 0x01F1 , // updated 5.55 hotfix
2018-09-26 03:22:30 +10:00
2021-07-27 07:33:55 +09:00
WorldInteractionHandler = 0x0343 , // updated 5.55 hotfix
Dive = 0x021C , // updated 5.55 hotfix
2018-11-01 23:56:43 +01:00
} ;
2018-02-02 18:34:20 +01:00
2018-11-01 23:56:43 +01:00
////////////////////////////////////////////////////////////////////////////////
/// Chat Connection IPC Codes
/**
* Server IPC Chat Type Codes .
*/
enum ServerChatIpcType : uint16_t
{
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 ,
2019-08-07 21:42:38 -07:00
FreeCompanyEvent = 0x012C , // added 5.0
2018-11-01 23:56:43 +01:00
} ;
2017-10-05 20:24:58 +02:00
2018-11-01 23:56:43 +01:00
/**
* Client IPC Chat Type Codes .
*/
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
} ;
2017-08-22 17:29:03 +02:00
2018-11-01 23:56:43 +01:00
}
2017-08-22 17:29:03 +02:00
# endif /*_CORE_NETWORK_PACKETS_IPCS_H*/