1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/python
# -*- coding: GBK -*-
#-------------------------------------------------------------------------------
#
##@package GM.Commands.GMT_MagicWeaponExp
#
# @todo:·¨±¦Áé»ê
# @author hxp
# @date 2018-09-29
# @version 1.0
#
# ÏêϸÃèÊö: ·¨±¦Áé»ê
#
#-------------------------------------------------------------------------------
#"""Version = 2018-09-29 00:00:00"""
#-------------------------------------------------------------------------------
 
#µ¼Èë
import GMCommon
import ChConfig
import GameWorld
import GMShell
 
 
## Ö´ÐÐÂß¼­
#  @param curPlayer µ±Ç°Íæ¼Ò
#  @param gmCmdDict: ÃüÁî×Öµä
#  @return None
#  @remarks º¯ÊýÏêϸ˵Ã÷.
def OnExec(orderId, gmCmdDict):
    queryType = gmCmdDict.get(GMCommon.Def_GMKey_QueryType, '')
    playerFind = gmCmdDict.get(GMCommon.Def_GMKey_PlayerFind, '')
    mwID = GameWorld.ToIntDef(gmCmdDict.get('mwID', ''), 0)
    mwExp = GameWorld.ToIntDef(gmCmdDict.get('mwExp', ''), 0)
    
    tagPlayer = None
    playerManager = GameWorld.GetPlayerManager()
    
    if queryType == GMCommon.Def_GMKey_PlayerAccID:
        queryType = ChConfig.queryType_sqtPlayerByAccID
        tagPlayer = playerManager.FindPlayerByAccID(str(playerFind))
    
    elif queryType == GMCommon.Def_GMKey_PlayerName:
        queryType = ChConfig.queryType_sqtPlayerByName
        tagPlayer = playerManager.FindPlayerByName(str(playerFind))
    
    else:
        GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_ParamErr)
        return
    
    if not tagPlayer:
        # Íæ¼Ò²»ÔÚÏߣ¬ÏȼǼ£¬µÈÍæ¼ÒÉÏÏߺó´¦Àí
        GMShell.AddOfflinePlayerGMTInfo(orderId, queryType, playerFind, gmCmdDict)
        return
    
    isOnlineGMT = True # ÊÇ·ñÊÇÔÚÏß½ÓÊÕµÄGM¹¤¾ßÃüÁî
    GMCommon.GMTool_MapServer_Query(queryType, orderId, playerFind, gmCmdDict, "GMTMagicWeaponExp", [orderId, mwID, mwExp, isOnlineGMT], False)
    return
 
def OnOfflineGMTInfo(curPlayer, tagMapID, gmCmdDict):
    orderId = gmCmdDict.get('orderId', '')
    mwID = GameWorld.ToIntDef(gmCmdDict.get('mwID', ''), 0)
    mwExp = GameWorld.ToIntDef(gmCmdDict.get('mwExp', ''), 0)
    isOnlineGMT = False # ÊÇ·ñÊÇÔÚÏß½ÓÊÕµÄGM¹¤¾ßÃüÁî
    cmdStr = str([orderId, mwID, mwExp, isOnlineGMT])
    GameWorld.GetPlayerManager().MapServer_QueryPlayer(0, 0, curPlayer.GetPlayerID(), tagMapID, 'GMTMagicWeaponExp', 
                                                       cmdStr, len(cmdStr), curPlayer.GetRouteServerIndex())
    return