From 6eb8ce81a683bf5a3024877fdcd4d8c95a8c87b5 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 29 六月 2023 17:15:43 +0800 Subject: [PATCH] 9818 【BT10】新增古宝特效效果 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossYaomoBoss.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossYaomoBoss.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossYaomoBoss.py index 4db1a8c..db5c2f6 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossYaomoBoss.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossYaomoBoss.py @@ -24,6 +24,7 @@ import ShareDefine import ItemCommon import ChConfig +import PlayerGubao def OnYaomoBossStateChange(state, tick): ## 活动状态变更 @@ -104,6 +105,10 @@ if msgType == "HurtValueAward": __DoGiveCrossYaomoBossHurtAward(curPlayer, dataMsg) + ## 参与击杀妖魔boss + if msgType == "KillYaomoBoss": + PlayerGubao.AddGubaoItemEffValue(curPlayer, PlayerGubao.GubaoEffType_CrossYaomoBoss, 1) + return def __DoGiveCrossYaomoBossHurtAward(curPlayer, dataMsg): -- Gitblit v1.8.0