| | |
| | | dataDict.update(addDataDict)
|
| | |
|
| | | #发送封包
|
| | | SendEventPack(eventName, dataDict)
|
| | | SendEventPack("%s_%s" % (eventName, billboardType), dataDict)
|
| | | return
|
| | |
|
| | | ## GM执行命令操作
|
| | |
| | | SendEventPack("CompensationPersonal", dataDict)
|
| | | return
|
| | |
|
| | | ## 删除个人补偿流向
|
| | | # @param curPlayerID, GUID, ItemDictList
|
| | | # @return: None |
| | | def DR_DelPersonalCompensation(playerID, GUID, eventName):
|
| | | dataDict = {'PlayerID':playerID, 'GUID':GUID, 'eventName':eventName}
|
| | | #发送封包
|
| | | SendEventPack("CompensationPersonalDel", dataDict)
|
| | | return |
| | |
|
| | | ## 添加全服补偿流向
|
| | | # @param GUID, ItemDictList
|
| | | # @return: None
|