| | |
| | | ('OnlineType', ctypes.c_ubyte),
|
| | | ('RefCount', ctypes.c_ulong),
|
| | | ('Face', ctypes.c_ulong),
|
| | | ('FacePic', ctypes.c_ulong),
|
| | | ('ADOResult', ctypes.c_ulong),
|
| | | ]
|
| | |
|
| | |
| | | self.OnlineType, pos = CommFunc.ReadBYTE(buf, pos)
|
| | | self.RefCount, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | self.Face, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | self.FacePic, pos = CommFunc.ReadDWORD(buf, pos)
|
| | | return self.getLength()
|
| | |
|
| | |
|
| | |
| | | OnlineType = %s,
|
| | | RefCount = %s,
|
| | | Face = %s,
|
| | | FacePic = %s,
|
| | | ADOResult = %s,
|
| | | '''%(
|
| | | self.PlayerID,
|
| | |
| | | self.OnlineType,
|
| | | self.RefCount,
|
| | | self.Face,
|
| | | self.FacePic,
|
| | | self.ADOResult,
|
| | | )
|
| | | return output
|