| | |
| | | __PrintHelp(curPlayer)
|
| | | return
|
| | |
|
| | | if msgList[0] == "m":
|
| | | gmMatchIDList = msgList[1:]
|
| | | dataMsg = {
|
| | | "requestType":1,
|
| | | "seasonID":GameWorld.GetGameWorld().GetGameWorldDictByKey(ShareDefine.Def_Notify_WorldKey_CrossPKSeasonID), # 赛季ID
|
| | | "zoneID":GameWorld.GetGameWorld().GetGameWorldDictByKey(ShareDefine.Def_Notify_WorldKey_CrossPKZoneID), # PK赛区
|
| | | "playerID":curPlayer.GetPlayerID(),
|
| | | "fightPower":PlayerControl.GetFightPower(curPlayer),
|
| | | "gmMatchIDList":gmMatchIDList,
|
| | | }
|
| | | GameWorld.SendMsgToCrossServer(ShareDefine.ClientServerMsg_PKMatch, dataMsg)
|
| | | return
|
| | | |
| | | if msgList[0] == "b":
|
| | | zoneID = msgList[1] if len(msgList) > 1 else 0
|
| | | seasonID = msgList[2] if len(msgList) > 2 else 0
|
| | |
| | | GameWorld.DebugAnswer(curPlayer, "设置数据: SetCrossPK 类型 值")
|
| | | GameWorld.DebugAnswer(curPlayer, "类型:0-积分,2-段位,3-PK次数,4-胜利次数,5-连胜次数,6-连败次数")
|
| | | GameWorld.DebugAnswer(curPlayer, "7-今日PK次数,8-今日胜利次数,9-今日购买次数,10-今日刷新次数")
|
| | | GameWorld.DebugAnswer(curPlayer, "设置历史记录: SetCrossPK 赛季ID 类型 数值")
|
| | | GameWorld.DebugAnswer(curPlayer, "设置历史: SetCrossPK 赛季ID 类型 数值")
|
| | | GameWorld.DebugAnswer(curPlayer, "类型:0-段位,1-名次,2-积分,3-奖励等级")
|
| | | GameWorld.DebugAnswer(curPlayer, "当前连败次数: %s" % curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_CrossPK_CLoseCount))
|
| | | GameWorld.DebugAnswer(curPlayer, "设置上榜: SetCrossPK b 分区 赛季 段位 [积分 连胜]")
|
| | | GameWorld.DebugAnswer(curPlayer, "指定匹配: SetCrossPK m [playerID ...]")
|
| | | return
|
| | |
|
| | |
|