From e10fe7a58e2eeb0075e184b82a9e34608c8483ae Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 28 十一月 2025 18:00:44 +0800
Subject: [PATCH] 16 卡牌服务端(对象池状态输出改为每小时一次;增加命令Pool输出对象池状态;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerHorse.py |   21 +++++++++++++--------
 1 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerHorse.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerHorse.py
index 0a510b1..729cf68 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerHorse.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerHorse.py
@@ -25,6 +25,7 @@
 import IpyGameDataPY
 import GameFuncComm
 import PlayerOnline
+import PlayerTask
 import GameWorld
 import ObjPool
 
@@ -119,6 +120,8 @@
     # 有升级额外处理
     if updHorseLV > horseLV:
         RefreshHorseAttr(curPlayer)
+        
+    PlayerTask.AddTaskValue(curPlayer, ChConfig.TaskType_HorseLVUP, costItemCount)
     return
 
 #// B2 02 坐骑进阶 #tagCSHorseClassUP
@@ -408,14 +411,16 @@
     if state:
         return True
     
-#    if not ipyData:
-#        ipyData = IpyGameDataPY.GetIpyGameData("HorseSkin", horseSkinID)
-#    if ipyData:
-#        unlockWay = ipyData.GetUnlockWay()
-#        if unlockWay == 1:
-#            classLV = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_HorseClassLV)
-#            if classLV >= ipyData.GetUnlockValue():
-#                return True
+    if not ipyData:
+        ipyData = IpyGameDataPY.GetIpyGameData("HorseSkin", horseSkinID)
+    if ipyData:
+        unlockWay = ipyData.GetUnlockWay()
+        if unlockWay == 1:
+            if not ipyData.GetUnlockValue():
+                return True
+            #classLV = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_HorseClassLV)
+            #if classLV >= ipyData.GetUnlockValue():
+            #    return True
             
     return False
 

--
Gitblit v1.8.0