Message UnSubscribeMessage

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to unsubscribe from a SubSpace

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

YMMOGMessage

Base message for all messages used by YMMOG

Fields:

Name Type Description
playerId int

the id of the player that unsubscribes

playerIp IPAddress

the IPAddress of the player that unsubscribes

subSpaceId int

the SubSpace of the player that unsubscribes

Source code:

message UnSubscribeMessage extends YMMOGMessage {
    fields:
        int playerId;    // the id of the player that unsubscribes
        IPAddress playerIp;    // the IPAddress of the player that unsubscribes
        int subSpaceId;    // the SubSpace of the player that unsubscribes
}