From 133a8b5682a9b7637b20f2be88d27628fb6ca39a Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期二, 12 二月 2019 15:53:56 +0800
Subject: [PATCH] 5819 【后端】【1.6】运营活动支持对应不同的职业和世界等级(累计充值修改)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/KillScreenNPC.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/KillScreenNPC.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/KillScreenNPC.py
index 81fe457..7c04bc7 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/KillScreenNPC.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/KillScreenNPC.py
@@ -26,6 +26,7 @@
 import NPCCommon
 import GameLogic_SealDemon
 import GameLogic_ZhuXianBoss
+import GameLogic_ZhuXianTower
 
 ## GM命令执行入口
 #  @param curPlayer 当前玩家
@@ -45,7 +46,10 @@
         lineID = gameWorld.GetPropertyID() - 1
         gameWorld.SetGameWorldDict(GameLogic_ZhuXianBoss.FBDict_RemainHP % lineID, 1)
         return
-    
+    if curPlayer.GetMapID() == ChConfig.Def_FBMapID_ZhuXianTower:
+        #诛仙塔击杀怪
+        GameWorld.GetGameFB().SetGameFBDict(GameLogic_ZhuXianTower.FBDict_RemainHP, 1)
+        return
     isMapAllNPC = 0
     if len(playerList) > 0:
         isMapAllNPC = playerList[0]

--
Gitblit v1.8.0