From 0391cc7daf3d0236c24594f0266ff3b56b1b6b82 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期二, 19 十二月 2023 13:38:26 +0800 Subject: [PATCH] 10028 【港台】港台0.1折9997内部充值支持; --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py index e54867e..fef61fd 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py @@ -297,7 +297,10 @@ return cPlayerCoin = CPY_PlayerCoinToGold() - cPlayerCoin.useCoin = CommFunc.RMBToCoin(ipyData.GetPayRMBNum()) + if "@9997@" in curPlayer.GetAccID(): + cPlayerCoin.useCoin = CommFunc.RMBToCoin(ipyData.GetUsdMoney()) + else: + cPlayerCoin.useCoin = CommFunc.RMBToCoin(ipyData.GetPayRMBNum()) cPlayerCoin.orderInfo = orderInfo cPlayerCoin.appID = appID cPlayerCoin.isAddBourseMoney = isAddBourseMoney -- Gitblit v1.8.0