From b3d16628055d113d37021c1c55661f2cee035bdc Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 26 八月 2025 20:06:07 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(简化触发方式;优化额外触发技能;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerRecover.py | 8 +-------
1 files changed, 1 insertions(+), 7 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerRecover.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerRecover.py
index 3ae1fd5..6db971f 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerRecover.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerRecover.py
@@ -30,11 +30,9 @@
import IpyGameDataPY
import FBCommon
import GameFuncComm
-import PlayerTJG
import PlayerActivity
import PlayerSuccess
import PyGameData
-import BossHurtMng
import copy
import datetime
@@ -169,8 +167,7 @@
if curDayTimes:
curDayTimes = dayTimesLimit
elif dailyID is ShareDefine.DailyActionID_WorldBOSS:
- canKillCnt, dayTimesLimit = BossHurtMng.GetCanKillBossCnt(curPlayer, 0)
- curDayTimes = dayTimesLimit - canKillCnt
+ pass
if curDayTimes >= dayTimesLimit and not lostOnDay:
continue
addCommonCnt = (dayTimesLimit - curDayTimes) + lostOnDay * dayTimesLimit
@@ -304,9 +301,6 @@
else:
for itemID, itemCnt in totalItemDict.items():
ItemControler.GivePlayerItem(curPlayer, itemID, itemCnt, 0, [IPY_GameWorld.rptItem, IPY_GameWorld.rptAnyWhere])
- #if Def_TJGRecoverID in recoverCntDict:
- # #脱机挂经验找回后重置
- # PlayerTJG.ResetTJGDeadInfo(curPlayer)
if Def_QueenRelics in recoverCntDict:
PlayerSuccess.DoAddSuccessProgress(curPlayer, ShareDefine.SuccType_QueenRelicsEx, recoverCntDict[Def_QueenRelics])
DataRecordPack.DR_PlayerRecover(curPlayer, recoverWay, recoverCntDict, totalExp, totalMoney, totalSP, totalItemDict)
--
Gitblit v1.8.0