Interface ICharacterRemoveClientPacket

Unit

Declaration

type ICharacterRemoveClientPacket = interface(IPacket)

Description

Confirm deleting character from an account

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetSessionId: Cardinal;
Public procedure SetSessionId(SessionId: Cardinal);
Public function GetCharacterId: Cardinal;
Public procedure SetCharacterId(CharacterId: Cardinal);
Public function Family: TPacketFamily;
Public function Action: TPacketAction;
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property SessionId: Cardinal read GetSessionId write SetSessionId;
Public property CharacterId: Cardinal read GetCharacterId write SetCharacterId;

Description

Methods

Public function GetByteSize: Cardinal;

This item has no description.

Attributes
GUID['{F8A276E7-0AFA-513C-8D05-A756C641DBD9}']
Public function GetSessionId: Cardinal;

This item has no description.

Public procedure SetSessionId(SessionId: Cardinal);

This item has no description.

Public function GetCharacterId: Cardinal;

This item has no description.

Public procedure SetCharacterId(CharacterId: 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 ICharacterRemoveClientPacket 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 SessionId: Cardinal read GetSessionId write SetSessionId;

Note
Value range is 0-64008

Public property CharacterId: Cardinal read GetCharacterId write SetCharacterId;

The official client sends a short, which gets written as a variable-sized integer (2-4 bytes) due to a quirk of the official encoding routine. However, the official server expects an int.

Note
Value range is 0–197815216


Generated by PasDoc 0.16.0-snapshot.