hxp
2021-02-01 e95c880a51289fb5f4f54b1a24ff6d590dceef0d
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCoin.py
@@ -163,6 +163,19 @@
        Sync_DayFreeGoldGiftState(curPlayer)
    return
#// A1 23 查询充值次数 #tagCMQueryCoinToGoldCount
#
#struct tagCMQueryCoinToGoldCount
#{
#    tagHead        Head;
#    BYTE        RecordID;    //充值记录ID,也就是充值ID,发0则查全部
#};
def OnQueryCoinToGoldCount(index, clientData, tick):
    curPlayer = GameWorld.GetPlayerManager().GetPlayerByIndex(index)
    recordID = clientData.RecordID
    Sync_CoinToGoldCountInfo(curPlayer, [recordID] if recordID else [])
    return
## 创角赠送
#  @param curPlayer 玩家实例
#  @return None