From d33b1530147a412e88a32bf1168ca3ac6e9718c6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 20 三月 2026 10:35:50 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(左慈所有技能;技能目标细分增加11-受控目标优先;敌友目标增加3-友方(一定不含自己);7011效果改为无技能目标时触发;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTask.py |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTask.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTask.py
index ec81f6a..d543b7f 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTask.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerTask.py
@@ -47,7 +47,7 @@
             if taskID not in taskIDList:
                 taskIDList.append(taskID)
         IpyGameDataPY.SetConfigEx(key, taskIDListDict)
-        GameWorld.Log("任务ID列表: %s" % taskIDListDict)
+        #GameWorld.Log("任务ID列表: %s" % taskIDListDict)
     return taskIDListDict.get(taskGroup, [])
 
 def OnPlayerLogin(curPlayer):
@@ -213,6 +213,9 @@
                 equipCnt += 1
         taskValue = equipCnt
         
+    elif taskType == ChConfig.TaskType_Rename:
+        taskValue = 1 if curPlayer.NomalDictGetProperty(ChConfig.Def_Player_Rename) else 0
+        
     return taskValue
 
 def UpdTaskValue(curPlayer, taskType):

--
Gitblit v1.8.0