hxp
2019-11-27 a4cc5ca09eb2b1ccbb40d7db4b45ded8195d0a98
8346 【恺英】【后端】协助系统(协助表修改)
1个文件已修改
7 ■■■■■ 已修改文件
ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ServerPython/CoreServerGroup/GameServer/Script/PyGameDataStruct.py
@@ -204,7 +204,6 @@
        ('Job', ctypes.c_ubyte),
        ('LV', ctypes.c_ushort),
        ('RealmLV', ctypes.c_ubyte),
        ('AssistType', ctypes.c_ubyte),
        ('MapID', ctypes.c_ulong),
        ('LineID', ctypes.c_ulong),
        ('NPCID', ctypes.c_ulong),
@@ -225,7 +224,6 @@
        self.Job = 0
        self.LV = 0
        self.RealmLV = 0
        self.AssistType = 0
        self.MapID = 0
        self.LineID = 0
        self.NPCID = 0
@@ -245,7 +243,6 @@
        self.Job, pos = CommFunc.ReadBYTE(buf, pos)
        self.LV, pos = CommFunc.ReadWORD(buf, pos)
        self.RealmLV, pos = CommFunc.ReadBYTE(buf, pos)
        self.AssistType, pos = CommFunc.ReadBYTE(buf, pos)
        self.MapID, pos = CommFunc.ReadDWORD(buf, pos)
        self.LineID, pos = CommFunc.ReadDWORD(buf, pos)
        self.NPCID, pos = CommFunc.ReadDWORD(buf, pos)
@@ -263,7 +260,6 @@
        buf = CommFunc.WriteBYTE(buf, self.Job)
        buf = CommFunc.WriteWORD(buf, self.LV)
        buf = CommFunc.WriteBYTE(buf, self.RealmLV)
        buf = CommFunc.WriteBYTE(buf, self.AssistType)
        buf = CommFunc.WriteDWORD(buf, self.MapID)
        buf = CommFunc.WriteDWORD(buf, self.LineID)
        buf = CommFunc.WriteDWORD(buf, self.NPCID)
@@ -279,7 +275,6 @@
        length += sizeof(ctypes.c_char) * 33
        length += sizeof(ctypes.c_ubyte)
        length += sizeof(ctypes.c_ushort)
        length += sizeof(ctypes.c_ubyte)
        length += sizeof(ctypes.c_ubyte)
        length += sizeof(ctypes.c_ulong)
        length += sizeof(ctypes.c_ulong)
@@ -297,7 +292,6 @@
            Job = %s,
            LV = %s,
            RealmLV = %s,
            AssistType = %s,
            MapID = %s,
            LineID = %s,
            NPCID = %s,
@@ -312,7 +306,6 @@
                self.Job,
                self.LV,
                self.RealmLV,
                self.AssistType,
                self.MapID,
                self.LineID,
                self.NPCID,