Protocol updates up to 10.82

This commit is contained in:
TheSumm
2015-10-24 17:46:53 +02:00
parent d9e8bfff4c
commit 0d8791e1a7
12 changed files with 371 additions and 11 deletions

View File

@@ -64,7 +64,7 @@ GameServerOpcodes = {
GameServerPlayerSkills = 161,
GameServerPlayerState = 162,
GameServerClearTarget = 163,
GameServerSpellDelay = 164, --870
GameServerSpellDelay = 164, -- 870
GameServerSpellGroupDelay = 165, -- 870
GameServerMultiUseDelay = 166, -- 870
GameServerTalk = 170,
@@ -88,8 +88,12 @@ GameServerOpcodes = {
GameServerVipLogout = 212,
GameServerTutorialHint = 220,
GameServerAutomapFlag = 221,
GameServerCoinBalance = 223, -- 1080
GameServerStoreError = 224, -- 1080
GameServerRequestPurchaseData = 225, -- 1080
GameServerQuestLog = 240,
GameServerQuestLine = 241,
GameServerCoinBalanceUpdating = 242, -- 1080
GameServerChannelEvent = 243, -- 910
GameServerItemInfo = 244, -- 910
GameServerPlayerInventory = 245, -- 910
@@ -97,7 +101,11 @@ GameServerOpcodes = {
GameServerMarketLeave = 247, -- 944
GameServerMarketDetail = 248, -- 944
GameServerMarketBrowse = 249, -- 944
GameServerShowModalDialog = 250 -- 960
GameServerShowModalDialog = 250, -- 960
GameServerStore = 251, -- 1080
GameServerStoreOffers = 252, -- 1080
GameServerStoreTransactionHistory = 253, -- 1080
GameServerStoreCompletePurchase = 254 -- 1080
}
ClientOpcodes = {
@@ -179,6 +187,7 @@ ClientOpcodes = {
ClientBugReport = 230,
ClientRuleViolation = 231,
ClientDebugReport = 232,
ClientTransferCoins = 239, -- 1080
ClientRequestQuestLog = 240,
ClientRequestQuestLine = 241,
ClientNewRuleViolation = 242, -- 910
@@ -188,5 +197,10 @@ ClientOpcodes = {
ClientMarketCreate = 246, -- 944
ClientMarketCancel = 247, -- 944
ClientMarketAccept = 248, -- 944
ClientAnswerModalDialog = 249 -- 960
ClientAnswerModalDialog = 249, -- 960
ClientOpenStore = 250, -- 1080
ClientRequestStoreOffers = 251, -- 1080
ClientBuyStoreOffer = 252, -- 1080
ClientOpenTransactionHistory = 253, -- 1080
ClientRequestTransactionHistory = 254 -- 1080
}