From 912176de9ed5b45e5fe0edbb15b8796f54c56ba2 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 25 八月 2025 19:26:52 +0800 Subject: [PATCH] 121 【武将】武将系统-服务端(武将表、NPC表 增加性别) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGuaji.py | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGuaji.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGuaji.py index 8de7d6b..8c8b912 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGuaji.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerGuaji.py @@ -28,7 +28,6 @@ import ItemControler import GameFuncComm import GameWorld -import PlayerVip import time @@ -320,7 +319,6 @@ def GetGuajiExpRate(curPlayer): ## 挂机收益经验加成 expRate = curPlayer.GetFightExpRate() # 系统及功能累加 - expRate += PlayerVip.GetPrivilegeValue(curPlayer, ChConfig.VIPPrivilege_FightExpRate) # VIP加成 return expRate def OnGetGuajiAward(curPlayer, isQuick): @@ -333,8 +331,7 @@ if isQuick: quickCountToday = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_GuajiQuickCount) quickCountFree = IpyGameDataPY.GetFuncCfg("GuajiQuick", 2) - vipCanBuyCount = PlayerVip.GetPrivilegeValue(curPlayer, ChConfig.VIPPrivilege_GuajiQuickBuy) - quickCountMax = quickCountFree + vipCanBuyCount + quickCountMax = quickCountFree if quickCountToday >= quickCountMax: GameWorld.DebugLog("快速挂机收益次数已达每日上限! quickCountToday=%s" % quickCountToday, playerID) return -- Gitblit v1.8.0