From fd46c6afd9024b1739a449786c284461d0394d0b Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 01 十二月 2025 15:05:47 +0800
Subject: [PATCH] 358 【内政】红颜系统-服务端(白骨盈野特殊效果改为固定奖励)

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

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
index 5e912cc..e256cec 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/IpyGameDataPY.py
@@ -2213,6 +2213,7 @@
 
                 "Robot":(
                         ("DWORD", "ID", 1),
+                        ("char", "RobotName", 0),
                         ("char", "ViewCache", 0),
                         ),
                 }
@@ -5517,7 +5518,8 @@
         return
         
     def GetID(self): return self.attrTuple[0] # 机器人ID,同玩家ID DWORD
-    def GetViewCache(self): return self.attrTuple[1] # 机器人缓存 char
+    def GetRobotName(self): return self.attrTuple[1] # char
+    def GetViewCache(self): return self.attrTuple[2] # 机器人缓存 char
 
 
 def Log(msg, playerID=0, par=0):

--
Gitblit v1.8.0