From 7cf1869b1e6ee737eebb37c6e6d8721100229daf Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期二, 13 十一月 2018 17:16:15 +0800 Subject: [PATCH] 4710 【1.3】【后端】魔族法宝副本修改(新增多个小关卡) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py index d1be380..6474a7f 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/RemoteQuery/GY_Query_GMTCTG.py @@ -25,6 +25,7 @@ import GMCommon import ShareDefine import PlayerControl +import IpyGameDataPY #--------------------------------------------------------------------- #全局变量 #--------------------------------------------------------------------- @@ -50,7 +51,21 @@ changeCoinPointBefore = curPlayer.GetChangeCoinPointTotal() bourseMoneyBefore = PlayerControl.GetMoney(curPlayer, ShareDefine.TYPE_Price_BourseMoney) - if value.isdigit(): + errorMsg = "" + orderInfoIpyData = None + if appID: + orderInfoIpyData = IpyGameDataPY.GetIpyGameDataNotLog("OrderInfo", value, appID) + if not orderInfoIpyData: + Result = GMCommon.Def_ParamErr + errorMsg = "Can not found the orderInfo(%s) and appID(%s)!" % (value, appID) + + if errorMsg: + GameWorld.Log("GMT_CTG, errorMsg=%s" % errorMsg) + resultMsg = str([orderId, errorMsg, 'GMT_CTG', Result]) + GameWorld.GetPlayerManager().GameServer_QueryPlayerResult(0, 0, 0, 'GMToolResult', resultMsg, len(resultMsg)) + return + + if not orderInfoIpyData and value.isdigit(): orderRMB = int(value) PlayerCoin.PlayerCoinToGoldEx(curPlayer, orderRMB, ChConfig.Def_GiveMoney_GMTCTG, isAddBourseMoney) else: -- Gitblit v1.8.0