| | |
| | | #发送封包
|
| | | SendEventPack("FightPowerChangeInfo", dataDict, curPlayer)
|
| | | return
|
| | |
|
| | | ## 玩家周狂欢(七天巡礼)
|
| | | # @return
|
| | | def DR_WeekPartyPoint(curPlayer, dayIndex, point):
|
| | | dataDict = {'PlayerID':curPlayer.GetPlayerID(), |
| | | 'AccID':curPlayer.GetAccID(), 'dayIndex':dayIndex, 'point':point}
|
| | | |
| | | #发送封包
|
| | | SendEventPack("WeekPartyPoint", dataDict, curPlayer)
|
| | | return
|
| | | def DR_FeastWeekPartyPoint(curPlayer, dayIndex, point):
|
| | | ##节日巡礼
|
| | | dataDict = {'PlayerID':curPlayer.GetPlayerID(), |
| | | 'AccID':curPlayer.GetAccID(), 'dayIndex':dayIndex, 'point':point}
|
| | | #发送封包
|
| | | SendEventPack("FeastWeekPartyPoint", dataDict, curPlayer)
|
| | | return |