From dbbcdad11c381c39b76641f2e558308933109e84 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 24 一月 2019 17:35:34 +0800
Subject: [PATCH] 5931 【后端】【1.5.100】诛仙装备开发(传奇属性生成规则格式配置修改)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetCrossPK.py | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetCrossPK.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetCrossPK.py
index b395c93..b0f8b89 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetCrossPK.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/GM/Commands/SetCrossPK.py
@@ -57,6 +57,7 @@
PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_CrossPK_SeasonID, 0)
for i in xrange(1, 20):
PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_CrossPK_SeasonDanLV % i, 0)
+ PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_CrossPK_SeasonScore % i, 0)
PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_CrossPK_SeasonOrder % i, 0)
PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_CrossPK_SeasonAwardLV % i, 0)
@@ -97,7 +98,8 @@
seasonID, setType, value = msgList
setTypeDict = {0:[ChConfig.Def_PDict_CrossPK_SeasonDanLV, "段位"],
1:[ChConfig.Def_PDict_CrossPK_SeasonOrder, "名次"],
- 2:[ChConfig.Def_PDict_CrossPK_SeasonAwardLV, "奖励等级"],
+ 2:[ChConfig.Def_PDict_CrossPK_SeasonScore, "积分"],
+ 3:[ChConfig.Def_PDict_CrossPK_SeasonAwardLV, "奖励等级"],
}
if setType not in setTypeDict:
__PrintHelp(curPlayer)
@@ -116,7 +118,7 @@
GameWorld.DebugAnswer(curPlayer, "类型:0-积分,1-过天积分,2-段位,3-PK次数,4-胜利次数,5-连胜次数")
GameWorld.DebugAnswer(curPlayer, "6-今日PK次数,7-今日胜利次数,8-今日购买次数")
GameWorld.DebugAnswer(curPlayer, "设置历史记录: SetCrossPK 赛季ID 类型 数值")
- GameWorld.DebugAnswer(curPlayer, "类型:0-段位,1-名次,2-奖励等级")
+ GameWorld.DebugAnswer(curPlayer, "类型:0-段位,1-名次,2-积分,3-奖励等级")
return
--
Gitblit v1.8.0