Interface IRecoverReplyServerPacket

Unit

Declaration

type IRecoverReplyServerPacket = interface(IPacket)

Description

Karma/experience update

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetExperience: Cardinal;
Public procedure _SetExperience(Experience: Cardinal);
Public function _GetKarma: Cardinal;
Public procedure _SetKarma(Karma: Cardinal);
Public function _GetLevelUp: TOptional<Cardinal>;
Public procedure _SetLevelUp(LevelUp: TOptional<Cardinal>);
Public function _GetStatPoints: TOptional<Cardinal>;
Public procedure _SetStatPoints(StatPoints: TOptional<Cardinal>);
Public function _GetSkillPoints: TOptional<Cardinal>;
Public procedure _SetSkillPoints(SkillPoints: TOptional<Cardinal>);
Public function Family: TPacketFamily;
Public function Action: TPacketAction;
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property Experience: Cardinal read _GetExperience write _SetExperience;
Public property Karma: Cardinal read _GetKarma write _SetKarma;
Public property LevelUp: TOptional<Cardinal> read _GetLevelUp write _SetLevelUp;
Public property StatPoints: TOptional<Cardinal> read _GetStatPoints write _SetStatPoints;
Public property SkillPoints: TOptional<Cardinal> read _GetSkillPoints write _SetSkillPoints;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Attributes
GUID['{49BD9E81-9BE3-589A-A64B-D4585E9CB5A0}']
Public function _GetExperience: Cardinal;

This item has no description.

Public procedure _SetExperience(Experience: Cardinal);

This item has no description.

Public function _GetKarma: Cardinal;

This item has no description.

Public procedure _SetKarma(Karma: Cardinal);

This item has no description.

Public function _GetLevelUp: TOptional<Cardinal>;

This item has no description.

Public procedure _SetLevelUp(LevelUp: TOptional<Cardinal>);

This item has no description.

Public function _GetStatPoints: TOptional<Cardinal>;

This item has no description.

Public procedure _SetStatPoints(StatPoints: TOptional<Cardinal>);

This item has no description.

Public function _GetSkillPoints: TOptional<Cardinal>;

This item has no description.

Public procedure _SetSkillPoints(SkillPoints: TOptional<Cardinal>);

This item has no description.

Public function Family: TPacketFamily;

Returns the packet family associated with this packet.

Returns

The packet family associated with this packet

Public function Action: TPacketAction;

Returns the packet action associated with this packet.

Returns

The packet action associated with this packet

Public procedure Serialize(Writer: TEoWriter);

Serializes this IRecoverReplyServerPacket object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to

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 Experience: Cardinal read _GetExperience write _SetExperience;

Note
Value range is 0–197815216

Public property Karma: Cardinal read _GetKarma write _SetKarma;

Note
Value range is 0-64008

Public property LevelUp: TOptional<Cardinal> read _GetLevelUp write _SetLevelUp;

A value greater than 0 is "new level" and indicates the player leveled up. The official client reads this if the packet is larger than 6 bytes.

Note
Value range is 0-252

Public property StatPoints: TOptional<Cardinal> read _GetStatPoints write _SetStatPoints;

The official client reads this if the player leveled up

Note
Value range is 0-64008

Public property SkillPoints: TOptional<Cardinal> read _GetSkillPoints write _SetSkillPoints;

The official client reads this if the player leveled up

Note
Value range is 0-64008


Generated by PasDoc 0.16.0-snapshot.