Message ClientLogin

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to forward login information to the gameclient

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

our playerId

xpos int

our initial x-axis position

ypos int

our initial y-axis position

gameSpaceSize int

the gameSpaceSize

Source code:

message ClientLogin extends YMMOGMessage {
    fields:
        int playerId;    // our playerId
        int xpos;    // our initial x-axis position
        int ypos;    // our initial y-axis position
        int gameSpaceSize;    // the gameSpaceSize
}