From 3ed128401680ce3755dee186f48c7fb965f7aca8 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 18 九月 2025 10:11:12 +0800 Subject: [PATCH] 129 【战斗】战斗系统-服务端(诸葛果技能;追击支持;优化连击追击;程序内置限制单武将单次行动中每个对象累计使用技能次数20次;) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py index 5ef3994..2c811dc 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerFuncTeam.py @@ -49,16 +49,12 @@ if not ipyData.GetOPLimitInAct(): return isInAct = False - if funcMapID == ChConfig.Def_FBMapID_CrossBattlefield: - isInAct = CrossBattlefield.GetCrossBattlefieldState() if isInAct: GameWorld.ErrLog("活动期间无法操作队伍! funcMapID=%s" % funcMapID, curPlayer.GetPlayerID()) return isInAct def GetFuncTeamZoneID(funcMapID): zoneID = 0 - if funcMapID == ChConfig.Def_FBMapID_CrossBattlefield: - zoneID = CrossBattlefield.GetCrossBattlefieldZoneID(GameWorld.GetServerGroupID()) return zoneID #// B9 20 创建功能队伍 #tagCMCreateFuncTeam @@ -453,13 +449,6 @@ funcZoneID = 0 serverGroupList = [] - if funcMapID == ChConfig.Def_FBMapID_CrossBattlefield: - zoneIpyData = CrossBattlefield.GetCrossBattlefieldZoneIpyData(serverGroupID) - if not zoneIpyData: - return - funcZoneID = zoneIpyData.GetZoneID() - serverGroupList = zoneIpyData.GetServerGroupIDList() # 只通知该分区服务器 - return funcZoneID, serverGroupList def ClientServerMsg_CreateFuncTeam(serverGroupID, msgData): -- Gitblit v1.8.0