Class TEquipmentPaperdoll

Unit

Declaration

type TEquipmentPaperdoll = class(TInterfacedObject, IEquipmentPaperdoll)

Description

Player equipment data. Sent with information about a player's paperdoll. Note that these values are item IDs.

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetBoots: Cardinal;
Public procedure _SetBoots(Boots: Cardinal);
Public function _GetAccessory: Cardinal;
Public procedure _SetAccessory(Accessory: Cardinal);
Public function _GetGloves: Cardinal;
Public procedure _SetGloves(Gloves: Cardinal);
Public function _GetBelt: Cardinal;
Public procedure _SetBelt(Belt: Cardinal);
Public function _GetArmor: Cardinal;
Public procedure _SetArmor(Armor: Cardinal);
Public function _GetNecklace: Cardinal;
Public procedure _SetNecklace(Necklace: Cardinal);
Public function _GetHat: Cardinal;
Public procedure _SetHat(Hat: Cardinal);
Public function _GetShield: Cardinal;
Public procedure _SetShield(Shield: Cardinal);
Public function _GetWeapon: Cardinal;
Public procedure _SetWeapon(Weapon: Cardinal);
Public function _GetRing: TArray<Cardinal>;
Public procedure _SetRing(Ring: TArray<Cardinal>);
Public function _GetArmlet: TArray<Cardinal>;
Public procedure _SetArmlet(Armlet: TArray<Cardinal>);
Public function _GetBracer: TArray<Cardinal>;
Public procedure _SetBracer(Bracer: TArray<Cardinal>);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TEquipmentPaperdoll;

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property Boots: Cardinal read _GetBoots write _SetBoots;
Public property Accessory: Cardinal read _GetAccessory write _SetAccessory;
Public property Gloves: Cardinal read _GetGloves write _SetGloves;
Public property Belt: Cardinal read _GetBelt write _SetBelt;
Public property Armor: Cardinal read _GetArmor write _SetArmor;
Public property Necklace: Cardinal read _GetNecklace write _SetNecklace;
Public property Hat: Cardinal read _GetHat write _SetHat;
Public property Shield: Cardinal read _GetShield write _SetShield;
Public property Weapon: Cardinal read _GetWeapon write _SetWeapon;
Public property Ring: TArray<Cardinal> read _GetRing write _SetRing;
Public property Armlet: TArray<Cardinal> read _GetArmlet write _SetArmlet;
Public property Bracer: TArray<Cardinal> read _GetBracer write _SetBracer;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Public function _GetBoots: Cardinal;

This item has no description.

Public procedure _SetBoots(Boots: Cardinal);

This item has no description.

Public function _GetAccessory: Cardinal;

This item has no description.

Public procedure _SetAccessory(Accessory: Cardinal);

This item has no description.

Public function _GetGloves: Cardinal;

This item has no description.

Public procedure _SetGloves(Gloves: Cardinal);

This item has no description.

Public function _GetBelt: Cardinal;

This item has no description.

Public procedure _SetBelt(Belt: Cardinal);

This item has no description.

Public function _GetArmor: Cardinal;

This item has no description.

Public procedure _SetArmor(Armor: Cardinal);

This item has no description.

Public function _GetNecklace: Cardinal;

This item has no description.

Public procedure _SetNecklace(Necklace: Cardinal);

This item has no description.

Public function _GetHat: Cardinal;

This item has no description.

Public procedure _SetHat(Hat: Cardinal);

This item has no description.

Public function _GetShield: Cardinal;

This item has no description.

Public procedure _SetShield(Shield: Cardinal);

This item has no description.

Public function _GetWeapon: Cardinal;

This item has no description.

Public procedure _SetWeapon(Weapon: Cardinal);

This item has no description.

Public function _GetRing: TArray<Cardinal>;

This item has no description.

Public procedure _SetRing(Ring: TArray<Cardinal>);

This item has no description.

Public function _GetArmlet: TArray<Cardinal>;

This item has no description.

Public procedure _SetArmlet(Armlet: TArray<Cardinal>);

This item has no description.

Public function _GetBracer: TArray<Cardinal>;

This item has no description.

Public procedure _SetBracer(Bracer: TArray<Cardinal>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TEquipmentPaperdoll object to the provided TEoWriter.

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

Deserializes an instance of TEquipmentPaperdoll 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 Boots: Cardinal read _GetBoots write _SetBoots;

Note
Value range is 0-64008

Public property Accessory: Cardinal read _GetAccessory write _SetAccessory;

Note
Value range is 0-64008

Public property Gloves: Cardinal read _GetGloves write _SetGloves;

Note
Value range is 0-64008

Public property Belt: Cardinal read _GetBelt write _SetBelt;

Note
Value range is 0-64008

Public property Armor: Cardinal read _GetArmor write _SetArmor;

Note
Value range is 0-64008

Public property Necklace: Cardinal read _GetNecklace write _SetNecklace;

Note
Value range is 0-64008

Public property Hat: Cardinal read _GetHat write _SetHat;

Note
Value range is 0-64008

Public property Shield: Cardinal read _GetShield write _SetShield;

Note
Value range is 0-64008

Public property Weapon: Cardinal read _GetWeapon write _SetWeapon;

Note
Value range is 0-64008

Public property Ring: TArray<Cardinal> read _GetRing write _SetRing;

Note

  • Length must be 2

  • Element value range is 0-64008

Public property Armlet: TArray<Cardinal> read _GetArmlet write _SetArmlet;

Note

  • Length must be 2

  • Element value range is 0-64008

Public property Bracer: TArray<Cardinal> read _GetBracer write _SetBracer;

Note

  • Length must be 2

  • Element value range is 0-64008


Generated by PasDoc 0.16.0-snapshot.