hxp
2025-06-04 d196d101b54ca95a1343399841d6b4e1117143b7
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
#!/usr/bin/python
# -*- coding: GBK -*-
#-------------------------------------------------------------------------------
#
##@package PyMongoDB.GMToolLogicProcess.Commands.GMT_CompensationMgr
#
# @todo:GM¹¤¾ßÃüÁî - È«·þÓʼþ¹ÜÀí
# @author hxp
# @date 2025-06-04
# @version 1.0
#
# ÏêϸÃèÊö: GM¹¤¾ßÃüÁî - È«·þÓʼþ¹ÜÀí
#
#-------------------------------------------------------------------------------
#"""Version = 2025-06-04 15:00"""
#-------------------------------------------------------------------------------
 
import GMCommon
import GameWorld
import DataRecordPack
import PlayerMail
 
## Ö´ÐÐÂß¼­
#  @param curPlayer µ±Ç°Íæ¼Ò
#  @param gmCmdDict: ÃüÁî×Öµä
#  @return None
#  @remarks º¯ÊýÏêϸ˵Ã÷.
def OnExec(gmCmdDict):
    
    GUIDInfo = gmCmdDict.get('GUIDInfo', '')
    operation = GameWorld.ToIntDef(gmCmdDict.get('operation', 0)) # 1-ͨ¹ý£»2-ɾ³ý
    if not GUIDInfo:
        return GMCommon.Def_ParamErr
    operGUIDList = GUIDInfo.split(",")
    if not operGUIDList:
        return GMCommon.Def_ParamErr
    
    if operation not in [1, 2]:
        return GMCommon.Def_ParamErr
    
    isOK = (operation == 1)
    for GUID in operGUIDList:
        PlayerMail.CheckServerMailResult(GUID, isOK)
        
    #Á÷Ïò
    GMT_Name = gmCmdDict.get(GMCommon.Def_GMKey_Type, '') 
    DataRecordPack.DR_ToolGMOperate(0, '', '', GMT_Name, str(gmCmdDict))
    return GMCommon.Def_Success