| | |
| | | 'AccID':curPlayer.GetAccID(), 'dayIndex':dayIndex, 'point':point}
|
| | | #发送封包
|
| | | SendEventPack("FeastWeekPartyPoint", dataDict, curPlayer)
|
| | | return |
| | | return
|
| | |
|
| | | def DR_MailSend(playerID, GUID, addDict={}):
|
| | | ## 邮件发送流向
|
| | | dataDict = {'PlayerID':playerID, 'GUID':GUID} |
| | | dataDict.update(addDict)
|
| | | #发送封包
|
| | | SendEventPack("MailSend", dataDict)
|
| | | return |
| | |
|
| | | def DR_MailGiveSuccess(playerID, GUID):
|
| | | ## 邮件领取流向
|
| | | dataDict = {'PlayerID':playerID, 'GUID':GUID} |
| | | #发送封包
|
| | | SendEventPack("MailGiveSuccess", dataDict)
|
| | | return
|
| | |
|
| | | def DR_MailDel(playerID, GUID, eventName):
|
| | | ## 邮件删除流向
|
| | | dataDict = {'PlayerID':playerID, 'GUID':GUID, 'eventName':eventName}
|
| | | #发送封包
|
| | | SendEventPack("MailDel", dataDict)
|
| | | return |