From 6b3b8976f49b47754a57cc710bf20a0682a80f78 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 30 十月 2025 17:09:48 +0800
Subject: [PATCH] 129 【战斗】战斗系统-服务端(修复主线拾取掉落战利品为绑定的bug;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py | 48 ------------------------------------------------
1 files changed, 0 insertions(+), 48 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py
index ff7014e..e1a0e41 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/EventReport.py
@@ -1302,54 +1302,6 @@
#===========================================================================
return
-class god_weapon_lv(ScribeEvent):
- # 神兵升级记录
- def __init__(self):
- #必须字段
- super(god_weapon_lv, self).__init__()
- self.account_id = "" # 账号 ID,平台下唯一,且终生不变
- self.chr_name = "" # 玩家角色名
-
- self.god_weapon_name = "" # 神兵名称
- self.bef_lv = 0 # 此次操作前的等级, 0代表0级, 1代表+1级
- self.bef_exp = 0 # 此次操作前的经验值
- self.cost_item_cnt = 0 # 此次消耗的道具数量
- self.aft_lv = 0 # 此次操作后的等级, 0代表0级, 1代表+1级
- self.aft_exp = 0 # 此次进阶操作后的经验值
-
- #非必须字段
-
- #即时是非必须字段也应该传送,各字段用,分隔,并且用双引号包含,参考格式'"1","","","12314"'
- return
-
- def GetCurEventStr(self):
- if not self.time:
- self.time = GameWorld.GetCurrentDataTimeStr()
- tmpList = [self.product_slug, self.agent_name, self.gameserver_no, self.account_id, self.chr_name,
- self.god_weapon_name, str(self.bef_lv), str(self.bef_exp), str(self.cost_item_cnt),
- str(self.aft_lv), str(self.aft_exp), self.time]
-
- return super(god_weapon_lv, self).GetEventStr(tmpList)
-
- def GetScribeEventName(self): return ShareDefine.Def_UserAction_GodWeaponLV
-
-def WriteEvent_god_weapon_lv(curPlayer, godWeaponName, befLV, befExp, costCnt, aftLV, aftExp):
- ## 写神兵升级记录
- #===========================================================================
- # godWeaponLV = god_weapon_lv()
- # godWeaponLV.SetEventAgentInfo(GameWorld.GetPlayerPlatform(curPlayer.GetAccID()))
- # godWeaponLV.account_id = GameWorld.GetPlatformAccID(curPlayer.GetAccID())
- # godWeaponLV.chr_name = curPlayer.GetPlayerName()
- # godWeaponLV.god_weapon_name = godWeaponName
- # godWeaponLV.bef_lv = befLV
- # godWeaponLV.bef_exp = befExp
- # godWeaponLV.cost_item_cnt = costCnt
- # godWeaponLV.aft_lv = aftLV
- # godWeaponLV.aft_exp = aftExp
- # WriteEvent(godWeaponLV)
- #===========================================================================
- return
-
class rune_lv(ScribeEvent):
# 符印升级记录
def __init__(self):
--
Gitblit v1.8.0