From 29ce3815e1b87549560d948261f0fbcf7585045c Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 29 五月 2025 10:43:29 +0800
Subject: [PATCH] 102 【主界面】官职晋升-服务端(渡劫删除)

---
 /dev/null                                                                                   |   55 -------------------------------------------------------
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py |    3 ---
 2 files changed, 0 insertions(+), 58 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py
index 0214b9f..170cc32 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerControl.py
@@ -69,7 +69,6 @@
 import GameFuncComm
 import IpyGameDataPY
 import PlayerRune
-import GameLogic_DuJie
 import PyGameData
 import PlayerMagicWeapon
 import PlayerFeastTravel
@@ -5148,8 +5147,6 @@
         # 6.计算buff属性, buff层级的不算如战斗力
         #        算战斗力总值时该层影响的数值不统计,但刷属性时需计算
         SkillShell.CalcBuffers_Effect(curPlayer, allAttrListBuffs)
-        # 渡劫副本护法属性加成
-        GameLogic_DuJie.CalcDujieFBAttrAdd(curPlayer, allAttrListBuffs)
             
         #        层非线性战斗属性累加
         battleNolineAttrBuff = allAttrListBuffs[ChConfig.CalcAttr_BattleNoline]
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_DuJieHelpInfo.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_DuJieHelpInfo.py
deleted file mode 100644
index a9ec12e..0000000
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_DuJieHelpInfo.py
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/python
-# -*- coding: GBK -*-
-#---------------------------------------------------------------------
-#
-#---------------------------------------------------------------------
-##@package GY_Query_DuJieHelpInfo
-# @todo: 渡劫护法信息
-#
-# @author: xdh
-# @date 2016-08-12 21:00
-# @version 1.0
-#
-# @note: 渡劫护法信息
-#---------------------------------------------------------------------
-#"""Version = 2016-08-12 21:00""" 
-#---------------------------------------------------------------------
-import GameWorld
-import GameLogic_DuJie
-import ChConfig
-import FBCommon
-import ShareDefine
-import PlayerActivity
-#---------------------------------------------------------------------
-
-## XX
-#  @param query_Type 请求类型
-#  @param query_ID 请求的玩家ID
-#  @param packCMDList 发包命令
-#  @param tick 当前时间
-#  @return "True" or "False" or ""
-def DoLogic(query_Type, query_ID, packCMDList, tick):
-    return ''
-
-
-## 信息
-#  @param curPlayer 发出请求的玩家
-#  @param callFunName 功能名称
-#  @param funResult 查询的结果
-#  @param tick 当前时间
-#  @return None
-def DoResult(curPlayer, callFunName, funResult, tick):
-    playerID = curPlayer.GetPlayerID()
-    GameWorld.DebugLog("GY_Query_DuJieHelpInfo funResult=%s" % funResult, playerID)
-    if not funResult:
-        #护法成功
-        
-        return
-    result = eval(funResult)
-    
-    if FBCommon.GetRecordMapID(curPlayer.GetMapID()) != ChConfig.Def_FBMapID_DuJie:
-        return
-    GameLogic_DuJie.OnGetDuJieHelpInfo(curPlayer, result)
-    return
-
-

--
Gitblit v1.8.0