| | |
| | | #银票
|
| | | elif moneyType == IPY_GameWorld.TYPE_Price_Silver_Paper:
|
| | | SendEventPack("UseSilverPaper", dataDict, curPlayer)
|
| | |
|
| | | |
| | | #代币
|
| | | elif moneyType == ShareDefine.TYPE_Price_PayCoin:
|
| | | SendEventPack("UsePayCoin", dataDict, curPlayer)
|
| | | |
| | | #自定义货币
|
| | | elif moneyType in ShareDefine.TYPE_Price_CurrencyDict:
|
| | | SendEventPack("UseCurrency_%s" % moneyType, dataDict, curPlayer)
|
| | |
| | | #银票
|
| | | elif moneyType == IPY_GameWorld.TYPE_Price_Silver_Paper:
|
| | | SendEventPack("GiveSilverPaper", dataDict, curPlayer)
|
| | | |
| | | |
| | | #代币
|
| | | elif moneyType == ShareDefine.TYPE_Price_PayCoin:
|
| | | SendEventPack("GivePayCoin", dataDict, curPlayer)
|
| | | |
| | | #自定义货币
|
| | | elif moneyType in ShareDefine.TYPE_Price_CurrencyDict:
|
| | | SendEventPack("GiveCurrency_%s" % moneyType, dataDict)
|