Update - 1.12.0.120

EN: 1.12.0.120
CN: 1.12.0.120
JP: 1.12.0.124
KR: 1.12.0.124
This commit is contained in:
SL1900
2026-06-30 14:30:00 +09:00
parent 061d344bf2
commit 80af235e05
826 changed files with 625145 additions and 81163 deletions
+4 -1
View File
@@ -1273,7 +1273,10 @@ local BindProcessFunction = function()
[NetMsgId.Id.activity_penguin_card_quest_reward_receive_failed_ack] = NOTHING_NEED_TO_BE_DONE,
[NetMsgId.Id.activity_gds_settle_succeed_ack] = HttpNetHandlerPlus.activity_gds_settle_succeed_ack,
[NetMsgId.Id.activity_gds_settle_failed_ack] = NOTHING_NEED_TO_BE_DONE,
[NetMsgId.Id.clear_all_activity_golden_spy_levels_notify] = HttpNetHandlerPlus.clear_all_activity_golden_spy_levels_notify
[NetMsgId.Id.clear_all_activity_golden_spy_levels_notify] = HttpNetHandlerPlus.clear_all_activity_golden_spy_levels_notify,
[NetMsgId.Id.activity_double_quest_reward_receive_succeed_ack] = HttpNetHandlerPlus.activity_double_quest_reward_receive_succeed_ack,
[NetMsgId.Id.activity_double_quest_reward_receive_failed_ack] = NOTHING_NEED_TO_BE_DONE,
[NetMsgId.Id.activity_double_reward_times_notify] = HttpNetHandlerPlus.activity_double_reward_times_notify
}
end
function HttpNetHandler.Init()
+15 -5
View File
@@ -78,10 +78,6 @@ function HttpNetHandlerPlus.activity_story_reward_receive_succeed_ack(mapMsgData
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
end
function HttpNetHandlerPlus.activity_history_story_settle_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
end
function HttpNetHandlerPlus.activity_task_reward_receive_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
@@ -240,6 +236,10 @@ function HttpNetHandlerPlus.activity_story_settle_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
end
function HttpNetHandlerPlus.activity_history_story_settle_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
end
function HttpNetHandlerPlus.milkout_settle_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
@@ -271,9 +271,19 @@ end
function HttpNetHandlerPlus.activity_gds_settle_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
UTILS.OpenReceiveByChangeInfo(mapMsgData)
end
function HttpNetHandlerPlus.clear_all_activity_golden_spy_levels_notify(mapMsgData)
EventManager.Hit("ClearAllGoldenSpyLevels", mapMsgData)
end
function HttpNetHandlerPlus.activity_double_quest_reward_receive_succeed_ack(mapMsgData)
local mapDecodedChangeInfo = UTILS.DecodeChangeInfo(mapMsgData)
HttpNetHandler.ProcChangeInfo(mapDecodedChangeInfo)
end
function HttpNetHandlerPlus.activity_double_reward_times_notify(mapMsgData)
local actData = PlayerData.Activity:GetActivityDataById(mapMsgData.ActivityId)
if actData ~= nil then
actData:UpdateDoubleCount(mapMsgData.UseTimes)
EventManager.Hit("UpdateInstanceDoubleCount")
end
end
return HttpNetHandlerPlus
+8
View File
@@ -697,6 +697,9 @@ NetMsgId.Id = {
activity_penguin_card_quest_reward_receive_req = 8404,
activity_penguin_card_quest_reward_receive_succeed_ack = 8405,
activity_penguin_card_quest_reward_receive_failed_ack = 8406,
activity_double_quest_reward_receive_req = 8407,
activity_double_quest_reward_receive_succeed_ack = 8408,
activity_double_quest_reward_receive_failed_ack = 8409,
mail_list_req = 9001,
mail_list_succeed_ack = 9002,
mail_list_failed_ack = 9003,
@@ -879,6 +882,7 @@ NetMsgId.Id = {
activity_end_item_change_notify = 10053,
item_expired_change_notify = 10054,
milkout_character_unlock_notify = 10055,
activity_double_reward_times_notify = 10056,
activity_mining_apply_req = 11001,
activity_mining_apply_succeed_ack = 11002,
activity_mining_apply_failed_ack = 11003,
@@ -1614,6 +1618,9 @@ NetMsgId.MsgName = {
[8404] = "proto.ActivityPenguinCardQuestReceiveReq",
[8405] = "proto.ChangeInfo",
[8406] = "proto.Error",
[8407] = "proto.ActivityDoubleQuestRewardReq",
[8408] = "proto.ChangeInfo",
[8409] = "proto.Error",
[9001] = "proto.Nil",
[9002] = "proto.Mails",
[9003] = "proto.Error",
@@ -1796,6 +1803,7 @@ NetMsgId.MsgName = {
[10053] = "proto.ChangeInfo",
[10054] = "proto.ItemTpl",
[10055] = "proto.MilkoutCharacterUnlockNotify",
[10056] = "proto.ActivityDoubleRewardTimesNotify",
[11001] = "proto.ActivityMiningApplyReq",
[11002] = "proto.ActivityMiningApplyResp",
[11003] = "proto.Error",