| | |
| | | # @date 2017-05-26
|
| | | # @version 1.0
|
| | | #
|
| | | # 详细描述: 媒体卡
|
| | | # 详细描述: 奖励由邮件发放,这里只做不可领取提示
|
| | | #
|
| | | #-------------------------------------------------------------------------------
|
| | | #"""Version = 2017-05-26 14:00"""
|
| | |
| | | import GMCommon
|
| | | import GameWorld
|
| | | import ChConfig
|
| | | import PlayerControl
|
| | | #---------------------------------------------------------------------
|
| | |
|
| | | ## 执行逻辑
|
| | |
| | | def OnExec(orderId, gmCmdDict):
|
| | | queryType = gmCmdDict.get(GMCommon.Def_GMKey_QueryType, '')
|
| | | playerFind = gmCmdDict.get(GMCommon.Def_GMKey_PlayerFind, '')
|
| | | cardType = GameWorld.ToIntDef(gmCmdDict.get('cardType', ''))
|
| | | cardCode = gmCmdDict.get('cardCode', '')
|
| | | cardState = GameWorld.ToIntDef(gmCmdDict.get('cardState', ''))
|
| | | notifyMsg = gmCmdDict.get('notifyMsg', '')
|
| | |
|
| | | if queryType == GMCommon.Def_GMKey_PlayerAccID:
|
| | | queryType = ChConfig.queryType_sqtPlayerByAccID
|
| | |
| | | GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_ParamErr)
|
| | | return
|
| | |
|
| | | sendCMD = [cardType, cardCode, cardState]
|
| | | GMCommon.GMTool_MapServer_Query(queryType, orderId, playerFind, gmCmdDict, 'GMTMediaCard', sendCMD)
|
| | | return
|
| | | playerManager = GameWorld.GetPlayerManager()
|
| | | #目标玩家
|
| | | tagPlayer = None
|
| | | |
| | | if queryType == ChConfig.queryType_sqtPlayerByAccID:
|
| | | tagPlayer = playerManager.FindPlayerByAccID(playerFind)
|
| | |
|
| | | if not tagPlayer:
|
| | | GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success)
|
| | | return
|
| | | |
| | | PlayerControl.NotifyCode(tagPlayer, notifyMsg)
|
| | | return GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success)
|
| | |
|
| | |
|
| | |
|