From e37a3c136624264a1f862795ad2e5468dabe0c9d Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 09 十月 2025 17:01:35 +0800
Subject: [PATCH] 16 卡牌服务端(删除在线奖励;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py | 15 ++-------------
1 files changed, 2 insertions(+), 13 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py
index 516bebd..46574db 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerZhanling.py
@@ -21,9 +21,6 @@
import IpyGameDataPY
import PlayerControl
import ChPyNetSendPack
-import PlayerGatherTheSoul
-import PlayerActHorsePetTrain
-import PlayerActGubao
import ItemControler
import IPY_GameWorld
import PlayerGubao
@@ -39,8 +36,8 @@
ZhanlingType_GubaoStar, # 古宝总星数 4
ZhanlingType_Login, # 登录 5
ZhanlingType_GatherTheSoulLV, # 聚魂 6
-ZhanlingType_HorsePetTrain, # 骑宠养成 7
-ZhanlingType_GubaoTrain, # 古宝养成 8
+ZhanlingType_7, # 骑宠养成 7
+ZhanlingType_8, # 古宝养成 8
ZhanlingType_Xianyuan, # 仙缘 9
ZhanlingType_Huanjingge, # 幻境阁 10
ZhanlingType_Lianqi, # 炼器 11
@@ -235,8 +232,6 @@
curValue = curPlayer.GetLV()
elif zhanlingType == ZhanlingType_Realm:
curValue = curPlayer.GetOfficialRank()
- elif zhanlingType == ZhanlingType_SkyTower:
- curValue = curPlayer.NomalDictGetProperty(ChConfig.Def_Player_Dict_SkyTowerFloor)
elif zhanlingType == ZhanlingType_GubaoStar:
_, curValue = PlayerGubao.GetGubaoTotalLVStar(curPlayer)
elif zhanlingType == ZhanlingType_Login:
@@ -244,12 +239,6 @@
if not firstLoginTime:
return
curValue = GameWorld.GetDiff_Day(int(time.time()), firstLoginTime) + 1
- elif zhanlingType == ZhanlingType_GatherTheSoulLV:
- curValue = PlayerGatherTheSoul.GetGatherTheSoulTotalLV(curPlayer)
- elif zhanlingType == ZhanlingType_HorsePetTrain:
- curValue = PlayerActHorsePetTrain.GetActHorsePetTrainScore(curPlayer)
- elif zhanlingType == ZhanlingType_GubaoTrain:
- curValue = PlayerActGubao.GetActGubaoTrainScore(curPlayer)
elif zhanlingType == ZhanlingType_Xianyuan:
curValue = PlayerControl.GetMoney(curPlayer, ShareDefine.TYPE_Price_XianyuanScore)
elif zhanlingType in ZhanlingValue1TypeList:
--
Gitblit v1.8.0