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

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetName: string;
Public procedure _SetName(Name: string);
Public function _GetPlayerId: Cardinal;
Public procedure _SetPlayerId(PlayerId: Cardinal);
Public function _GetMapId: Cardinal;
Public procedure _SetMapId(MapId: Cardinal);
Public function _GetCoords: IBigCoords;
Public procedure _SetCoords(Coords: IBigCoords);
Public function _GetDirection: TDirection;
Public procedure _SetDirection(Direction: TDirection);
Public function _GetClassId: Cardinal;
Public procedure _SetClassId(ClassId: Cardinal);
Public function _GetGuildTag: string;
Public procedure _SetGuildTag(GuildTag: string);
Public function _GetLevel: Cardinal;
Public procedure _SetLevel(Level: Cardinal);
Public function _GetGender: TGender;
Public procedure _SetGender(Gender: TGender);
Public function _GetHairStyle: Cardinal;
Public procedure _SetHairStyle(HairStyle: Cardinal);
Public function _GetHairColor: Cardinal;
Public procedure _SetHairColor(HairColor: Cardinal);
Public function _GetSkin: Cardinal;
Public procedure _SetSkin(Skin: Cardinal);
Public function _GetMaxHp: Cardinal;
Public procedure _SetMaxHp(MaxHp: Cardinal);
Public function _GetHp: Cardinal;
Public procedure _SetHp(Hp: Cardinal);
Public function _GetMaxTp: Cardinal;
Public procedure _SetMaxTp(MaxTp: Cardinal);
Public function _GetTp: Cardinal;
Public procedure _SetTp(Tp: Cardinal);
Public function _GetEquipment: IEquipmentMapInfo;
Public procedure _SetEquipment(Equipment: IEquipmentMapInfo);
Public function _GetSitState: TSitState;
Public procedure _SetSitState(SitState: TSitState);
Public function _GetInvisible: Boolean;
Public procedure _SetInvisible(Invisible: Boolean);
Public function _GetWarpEffect: TOptional<TWarpEffect>;
Public procedure _SetWarpEffect(WarpEffect: TOptional<TWarpEffect>);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TCharacterMapInfo;

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property Name: string read _GetName write _SetName;
Public property PlayerId: Cardinal read _GetPlayerId write _SetPlayerId;
Public property MapId: Cardinal read _GetMapId write _SetMapId;
Public property Coords: IBigCoords read _GetCoords write _SetCoords;
Public property Direction: TDirection read _GetDirection write _SetDirection;
Public property ClassId: Cardinal read _GetClassId write _SetClassId;
Public property GuildTag: string read _GetGuildTag write _SetGuildTag;
Public property Level: Cardinal read _GetLevel write _SetLevel;
Public property Gender: TGender read _GetGender write _SetGender;
Public property HairStyle: Cardinal read _GetHairStyle write _SetHairStyle;
Public property HairColor: Cardinal read _GetHairColor write _SetHairColor;
Public property Skin: Cardinal read _GetSkin write _SetSkin;
Public property MaxHp: Cardinal read _GetMaxHp write _SetMaxHp;
Public property Hp: Cardinal read _GetHp write _SetHp;
Public property MaxTp: Cardinal read _GetMaxTp write _SetMaxTp;
Public property Tp: Cardinal read _GetTp write _SetTp;
Public property Equipment: IEquipmentMapInfo read _GetEquipment write _SetEquipment;
Public property SitState: TSitState read _GetSitState write _SetSitState;
Public property Invisible: Boolean read _GetInvisible write _SetInvisible;
Public property WarpEffect: TOptional<TWarpEffect> read _GetWarpEffect write _SetWarpEffect;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Public function _GetName: string;

This item has no description.

Public procedure _SetName(Name: string);

This item has no description.

Public function _GetPlayerId: Cardinal;

This item has no description.

Public procedure _SetPlayerId(PlayerId: Cardinal);

This item has no description.

Public function _GetMapId: Cardinal;

This item has no description.

Public procedure _SetMapId(MapId: Cardinal);

This item has no description.

Public function _GetCoords: IBigCoords;

This item has no description.

Public procedure _SetCoords(Coords: IBigCoords);

This item has no description.

Public function _GetDirection: TDirection;

This item has no description.

Public procedure _SetDirection(Direction: TDirection);

This item has no description.

Public function _GetClassId: Cardinal;

This item has no description.

Public procedure _SetClassId(ClassId: Cardinal);

This item has no description.

Public function _GetGuildTag: string;

This item has no description.

Public procedure _SetGuildTag(GuildTag: string);

This item has no description.

Public function _GetLevel: Cardinal;

This item has no description.

Public procedure _SetLevel(Level: Cardinal);

This item has no description.

Public function _GetGender: TGender;

This item has no description.

Public procedure _SetGender(Gender: TGender);

This item has no description.

Public function _GetHairStyle: Cardinal;

This item has no description.

Public procedure _SetHairStyle(HairStyle: Cardinal);

This item has no description.

Public function _GetHairColor: Cardinal;

This item has no description.

Public procedure _SetHairColor(HairColor: Cardinal);

This item has no description.

Public function _GetSkin: Cardinal;

This item has no description.

Public procedure _SetSkin(Skin: Cardinal);

This item has no description.

Public function _GetMaxHp: Cardinal;

This item has no description.

Public procedure _SetMaxHp(MaxHp: Cardinal);

This item has no description.

Public function _GetHp: Cardinal;

This item has no description.

Public procedure _SetHp(Hp: Cardinal);

This item has no description.

Public function _GetMaxTp: Cardinal;

This item has no description.

Public procedure _SetMaxTp(MaxTp: Cardinal);

This item has no description.

Public function _GetTp: Cardinal;

This item has no description.

Public procedure _SetTp(Tp: Cardinal);

This item has no description.

Public function _GetEquipment: IEquipmentMapInfo;

This item has no description.

Public procedure _SetEquipment(Equipment: IEquipmentMapInfo);

This item has no description.

Public function _GetSitState: TSitState;

This item has no description.

Public procedure _SetSitState(SitState: TSitState);

This item has no description.

Public function _GetInvisible: Boolean;

This item has no description.

Public procedure _SetInvisible(Invisible: Boolean);

This item has no description.

Public function _GetWarpEffect: TOptional<TWarpEffect>;

This item has no description.

Public procedure _SetWarpEffect(WarpEffect: TOptional<TWarpEffect>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TCharacterMapInfo object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to
Public class function Deserialize(Reader: TEoReader): TCharacterMapInfo;

Deserializes an instance of TCharacterMapInfo from the provided TEoReader.

Parameters
Reader
The reader that the object will be deserialized from
Returns

The deserialized object

Properties

Public property ByteSize: Cardinal read _GetByteSize;

The size of the data that this object was deserialized from.

Note
0 if the instance was not created by the Deserialize method.

Public property Name: string read _GetName write _SetName;

This item has no description.

Public property PlayerId: Cardinal read _GetPlayerId write _SetPlayerId;

Note
Value range is 0-64008

Public property MapId: Cardinal read _GetMapId write _SetMapId;

Note
Value range is 0-64008

Public property Coords: IBigCoords read _GetCoords write _SetCoords;

This item has no description.

Public property Direction: TDirection read _GetDirection write _SetDirection;

This item has no description.

Public property ClassId: Cardinal read _GetClassId write _SetClassId;

Note
Value range is 0-252

Public property GuildTag: string read _GetGuildTag write _SetGuildTag;

Note
Length must be 3

Public property Level: Cardinal read _GetLevel write _SetLevel;

Note
Value range is 0-252

Public property Gender: TGender read _GetGender write _SetGender;

This item has no description.

Public property HairStyle: Cardinal read _GetHairStyle write _SetHairStyle;

Note
Value range is 0-252

Public property HairColor: Cardinal read _GetHairColor write _SetHairColor;

Note
Value range is 0-252

Public property Skin: Cardinal read _GetSkin write _SetSkin;

Note
Value range is 0-252

Public property MaxHp: Cardinal read _GetMaxHp write _SetMaxHp;

Note
Value range is 0-64008

Public property Hp: Cardinal read _GetHp write _SetHp;

Note
Value range is 0-64008

Public property MaxTp: Cardinal read _GetMaxTp write _SetMaxTp;

Note
Value range is 0-64008

Public property Tp: Cardinal read _GetTp write _SetTp;

Note
Value range is 0-64008

Public property Equipment: IEquipmentMapInfo read _GetEquipment write _SetEquipment;

This item has no description.

Public property SitState: TSitState read _GetSitState write _SetSitState;

This item has no description.

Public property Invisible: Boolean read _GetInvisible write _SetInvisible;

This item has no description.

Public property WarpEffect: TOptional<TWarpEffect> read _GetWarpEffect write _SetWarpEffect;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.