| | |
| | | ("DWORD", "MapID", 1),
|
| | | ("BYTE", "CanRide", 0),
|
| | | ("BYTE", "CanOutPet", 0),
|
| | | ("DWORD", "SightType", 0),
|
| | | ),
|
| | |
|
| | | "FBFunc":(
|
| | |
| | | def __init__(self): |
| | | self.MapID = 0
|
| | | self.CanRide = 0
|
| | | self.CanOutPet = 0 |
| | | self.CanOutPet = 0
|
| | | self.SightType = 0 |
| | | return |
| | | |
| | | def GetMapID(self): return self.MapID # 地图ID
|
| | | def GetCanRide(self): return self.CanRide # 可否骑乘
|
| | | def GetCanOutPet(self): return self.CanOutPet # 可否召唤宠物 |
| | | def GetCanOutPet(self): return self.CanOutPet # 可否召唤宠物
|
| | | def GetSightType(self): return self.SightType # 视野类型 |
| | | |
| | | # 副本总表 |
| | | class IPY_FBFunc(): |