From 9cff46fa2c92a65d2560a1737e2c07bba24ef3ff Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期三, 22 一月 2025 11:34:14 +0800
Subject: [PATCH] 1111 【越南】【英语】【BT】【砍树】修复坐骑自动升级时一次性使用多倍单次消耗培养丹时少算培养任务次数bug;
---
ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/BillboardDataCross.py | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/BillboardDataCross.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/BillboardDataCross.py
index 79a3ece..e7133d7 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/BillboardDataCross.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/BillboardDataCross.py
@@ -30,6 +30,7 @@
GameWorld.DebugAnswer(curPlayer, "运营活动榜类型:158-boss凭证,160-凭证仙盟,162-仙匣,163-古宝,164-骑宠")
GameWorld.DebugAnswer(curPlayer, "古神战场榜类型:151-参与榜,152-召集榜,153-积分榜")
GameWorld.DebugAnswer(curPlayer, "逐鹿万界榜类型:156-单场榜,157-周榜")
+ GameWorld.DebugAnswer(curPlayer, "跨服竞技场榜单:165,分组值1-分区,分组值2-赛季,value2-段位")
GameWorld.DebugAnswer(curPlayer, "注:如果没有特殊说明,分组值1为分区ID,分组2为0")
return
@@ -97,8 +98,8 @@
FakeName = "假名字".decode(ShareDefine.Def_Game_Character_Encoding).encode(GameWorld.GetCharacterEncoding())
for i in xrange(count):
- dataPlayerID = curDataCount + 1 + i
- dataPlayerName = "%s%s" % (FakeName, i)
+ dataPlayerID = 1000 + curDataCount + 1 + i
+ dataPlayerName = "%s%s" % (FakeName, dataPlayerID)
dataCmpValue1 = max(0, cmpValue1 - i)
dataCmpValue2 = max(0, cmpValue2 - i)
--
Gitblit v1.8.0