Class TCharacterMapInfo
Unit
Declaration
type TCharacterMapInfo = class(TInterfacedObject, ICharacterMapInfo)
Description
Information about a nearby character. The official client skips these if they're under 42 bytes in length.
Hierarchy
- TInterfacedObject
- TCharacterMapInfo
Overview
Methods
function GetByteSize: Cardinal; |
|
function GetName: string; |
|
procedure SetName(Name: string); |
|
function GetPlayerId: Cardinal; |
|
procedure SetPlayerId(PlayerId: Cardinal); |
|
function GetMapId: Cardinal; |
|
procedure SetMapId(MapId: Cardinal); |
|
function GetCoords: IBigCoords; |
|
procedure SetCoords(Coords: IBigCoords); |
|
function GetDirection: TDirection; |
|
procedure SetDirection(Direction: TDirection); |
|
function GetClassId: Cardinal; |
|
procedure SetClassId(ClassId: Cardinal); |
|
function GetGuildTag: string; |
|
procedure SetGuildTag(GuildTag: string); |
|
function GetLevel: Cardinal; |
|
procedure SetLevel(Level: Cardinal); |
|
function GetGender: TGender; |
|
procedure SetGender(Gender: TGender); |
|
function GetHairStyle: Cardinal; |
|
procedure SetHairStyle(HairStyle: Cardinal); |
|
function GetHairColor: Cardinal; |
|
procedure SetHairColor(HairColor: Cardinal); |
|
function GetSkin: Cardinal; |
|
procedure SetSkin(Skin: Cardinal); |
|
function GetMaxHp: Cardinal; |
|
procedure SetMaxHp(MaxHp: Cardinal); |
|
function GetHp: Cardinal; |
|
procedure SetHp(Hp: Cardinal); |
|
function GetMaxTp: Cardinal; |
|
procedure SetMaxTp(MaxTp: Cardinal); |
|
function GetTp: Cardinal; |
|
procedure SetTp(Tp: Cardinal); |
|
function GetEquipment: IEquipmentMapInfo; |
|
procedure SetEquipment(Equipment: IEquipmentMapInfo); |
|
function GetSitState: TSitState; |
|
procedure SetSitState(SitState: TSitState); |
|
function GetInvisible: Boolean; |
|
procedure SetInvisible(Invisible: Boolean); |
|
function GetWarpEffect: TOptional<TWarpEffect>; |
|
procedure SetWarpEffect(WarpEffect: TOptional<TWarpEffect>); |
|
procedure Serialize(Writer: TEoWriter); |
|
class function Deserialize(Reader: TEoReader): TCharacterMapInfo; |
Properties
property ByteSize: Cardinal read GetByteSize; |
|
property Name: string read GetName write SetName; |
|
property PlayerId: Cardinal read GetPlayerId write SetPlayerId; |
|
property MapId: Cardinal read GetMapId write SetMapId; |
|
property Coords: IBigCoords read GetCoords write SetCoords; |
|
property Direction: TDirection read GetDirection write SetDirection; |
|
property ClassId: Cardinal read GetClassId write SetClassId; |
|
property GuildTag: string read GetGuildTag write SetGuildTag; |
|
property Level: Cardinal read GetLevel write SetLevel; |
|
property Gender: TGender read GetGender write SetGender; |
|
property HairStyle: Cardinal read GetHairStyle write SetHairStyle; |
|
property HairColor: Cardinal read GetHairColor write SetHairColor; |
|
property Skin: Cardinal read GetSkin write SetSkin; |
|
property MaxHp: Cardinal read GetMaxHp write SetMaxHp; |
|
property Hp: Cardinal read GetHp write SetHp; |
|
property MaxTp: Cardinal read GetMaxTp write SetMaxTp; |
|
property Tp: Cardinal read GetTp write SetTp; |
|
property Equipment: IEquipmentMapInfo read GetEquipment write SetEquipment; |
|
property SitState: TSitState read GetSitState write SetSitState; |
|
property Invisible: Boolean read GetInvisible write SetInvisible; |
|
property WarpEffect: TOptional<TWarpEffect> read GetWarpEffect write SetWarpEffect; |
Description
Methods
function GetByteSize: Cardinal; |
|
This item has no description. |
function GetName: string; |
|
This item has no description. |
procedure SetName(Name: string); |
|
This item has no description. |
function GetPlayerId: Cardinal; |
|
This item has no description. |
procedure SetPlayerId(PlayerId: Cardinal); |
|
This item has no description. |
function GetMapId: Cardinal; |
|
This item has no description. |
procedure SetMapId(MapId: Cardinal); |
|
This item has no description. |
function GetCoords: IBigCoords; |
|
This item has no description. |
procedure SetCoords(Coords: IBigCoords); |
|
This item has no description. |
function GetDirection: TDirection; |
|
This item has no description. |
procedure SetDirection(Direction: TDirection); |
|
This item has no description. |
function GetClassId: Cardinal; |
|
This item has no description. |
procedure SetClassId(ClassId: Cardinal); |
|
This item has no description. |
function GetGuildTag: string; |
|
This item has no description. |
procedure SetGuildTag(GuildTag: string); |
|
This item has no description. |
function GetLevel: Cardinal; |
|
This item has no description. |
procedure SetLevel(Level: Cardinal); |
|
This item has no description. |
function GetGender: TGender; |
|
This item has no description. |
procedure SetGender(Gender: TGender); |
|
This item has no description. |
function GetHairStyle: Cardinal; |
|
This item has no description. |
procedure SetHairStyle(HairStyle: Cardinal); |
|
This item has no description. |
function GetHairColor: Cardinal; |
|
This item has no description. |
procedure SetHairColor(HairColor: Cardinal); |
|
This item has no description. |
function GetSkin: Cardinal; |
|
This item has no description. |
procedure SetSkin(Skin: Cardinal); |
|
This item has no description. |
function GetMaxHp: Cardinal; |
|
This item has no description. |
procedure SetMaxHp(MaxHp: Cardinal); |
|
This item has no description. |
function GetHp: Cardinal; |
|
This item has no description. |
procedure SetHp(Hp: Cardinal); |
|
This item has no description. |
function GetMaxTp: Cardinal; |
|
This item has no description. |
procedure SetMaxTp(MaxTp: Cardinal); |
|
This item has no description. |
function GetTp: Cardinal; |
|
This item has no description. |
procedure SetTp(Tp: Cardinal); |
|
This item has no description. |
function GetEquipment: IEquipmentMapInfo; |
|
This item has no description. |
procedure SetEquipment(Equipment: IEquipmentMapInfo); |
|
This item has no description. |
function GetSitState: TSitState; |
|
This item has no description. |
procedure SetSitState(SitState: TSitState); |
|
This item has no description. |
function GetInvisible: Boolean; |
|
This item has no description. |
procedure SetInvisible(Invisible: Boolean); |
|
This item has no description. |
function GetWarpEffect: TOptional<TWarpEffect>; |
|
This item has no description. |
procedure SetWarpEffect(WarpEffect: TOptional<TWarpEffect>); |
|
This item has no description. |
procedure Serialize(Writer: TEoWriter); |
|
Serializes this Parameters
|
class function Deserialize(Reader: TEoReader): TCharacterMapInfo; |
|
Deserializes an instance of Parameters
ReturnsThe deserialized object |
Properties
property ByteSize: Cardinal read GetByteSize; |
|
The size of the data that this object was deserialized from.
|
property Name: string read GetName write SetName; |
|
This item has no description. |
property PlayerId: Cardinal read GetPlayerId write SetPlayerId; |
|
|
property MapId: Cardinal read GetMapId write SetMapId; |
|
|
property Coords: IBigCoords read GetCoords write SetCoords; |
|
This item has no description. |
property Direction: TDirection read GetDirection write SetDirection; |
|
This item has no description. |
property ClassId: Cardinal read GetClassId write SetClassId; |
|
|
property GuildTag: string read GetGuildTag write SetGuildTag; |
|
|
property Level: Cardinal read GetLevel write SetLevel; |
|
|
property Gender: TGender read GetGender write SetGender; |
|
This item has no description. |
property HairStyle: Cardinal read GetHairStyle write SetHairStyle; |
|
|
property HairColor: Cardinal read GetHairColor write SetHairColor; |
|
|
property Skin: Cardinal read GetSkin write SetSkin; |
|
|
property MaxHp: Cardinal read GetMaxHp write SetMaxHp; |
|
|
property Hp: Cardinal read GetHp write SetHp; |
|
|
property MaxTp: Cardinal read GetMaxTp write SetMaxTp; |
|
|
property Tp: Cardinal read GetTp write SetTp; |
|
|
property Equipment: IEquipmentMapInfo read GetEquipment write SetEquipment; |
|
This item has no description. |
property SitState: TSitState read GetSitState write SetSitState; |
|
This item has no description. |
property Invisible: Boolean read GetInvisible write SetInvisible; |
|
This item has no description. |
property WarpEffect: TOptional<TWarpEffect> read GetWarpEffect write SetWarpEffect; |
|
This item has no description. |
Generated by PasDoc 0.16.0-snapshot.