From fff7319fd0fb06d03364c5be64edc5bc22e1fe3f Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 28 八月 2025 18:04:18 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(NPC支持成长属性;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