From 6264dea0e06199a7e786be0ddddf324dd6b6dcb6 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 13 十月 2025 11:23:14 +0800
Subject: [PATCH] 16 卡牌服务端(邮件过期删除优化;邮件支持发送定制属性装备;Mail命令优化支持发送指定天数、物品、定制属性物品邮件;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/RealmLVUP.py |   16 ----------------
 1 files changed, 0 insertions(+), 16 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/RealmLVUP.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/RealmLVUP.py
index 54137cc..f018e5a 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/RealmLVUP.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/RealmLVUP.py
@@ -17,9 +17,7 @@
 
 import GameWorld
 import PlayerPrestigeSys
-import IpyGameDataPY
 import PlayerControl
-import PlayerGubao
 import ChConfig
 
 
@@ -41,20 +39,6 @@
     value = cmdList[0]
     if value == 0:
         curPlayer.SetOfficialRank(ChConfig.Def_InitOfficialRank)
-        curPlayer.SetFreePoint(0)
-        GameWorld.DebugAnswer(curPlayer, "重置境界!")
-        GameWorld.DebugAnswer(curPlayer, "重置灵根点!")
-        effType = PlayerGubao.GubaoEffType_RealmLVAddLinggen
-        ipyDataMgr = IpyGameDataPY.IPY_Data()
-        for index in range(ipyDataMgr.GetGubaoCount()):
-            ipyData = ipyDataMgr.GetGubaoByIndex(index)
-            gubaoID = ipyData.GetGubaoID()
-            addFreePointAlready = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_GubaoItemEffValue % (gubaoID, effType))
-            if not addFreePointAlready:
-                continue
-            GameWorld.DebugAnswer(curPlayer, "重置古宝(%s)效果(%s)增加灵根点:%s" % (gubaoID, effType, addFreePointAlready))
-            PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_GubaoItemEffValue % (gubaoID, effType), 0)
-            PlayerGubao.Sync_GubaoItemEffInfo(curPlayer, gubaoID, effType, force=True)
         GameWorld.DebugAnswer(curPlayer, "重置境界OK")
         return
     if value == 1:

--
Gitblit v1.8.0