ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChPyNetSendPack.py
@@ -13068,6 +13068,7 @@
    _fields_ = [
                  ("MoneyType", c_ubyte),    
                  ("MoneyValue", c_int),    
                  ("IsBind", c_ubyte),    # 同物品IsBind标记逻辑
                  ]
    def __init__(self):
@@ -13082,6 +13083,7 @@
    def Clear(self):
        self.MoneyType = 0
        self.MoneyValue = 0
        self.IsBind = 0
        return
    def GetLength(self):
@@ -13093,11 +13095,13 @@
    def OutputString(self):
        DumpString = '''// A8 01 获得奖励信息 //tagMCGiveAwardInfo:
                                MoneyType:%d,
                                MoneyValue:%d
                                MoneyValue:%d,
                                IsBind:%d
                                '''\
                                %(
                                self.MoneyType,
                                self.MoneyValue
                                self.MoneyValue,
                                self.IsBind
                                )
        return DumpString