Interface SeekgraphStartedMessage

interface SeekgraphStartedMessage {
    black: User;
    challenge_id: number;
    creator: number;
    game_id: number;
    game_started?: true;
    rengo?: true;
    rengo_auto_start?: boolean;
    rengo_black_team?: number[];
    rengo_casual_mode?: boolean;
    rengo_white_team?: number[];
    time_control: string;
    time_control_parameters: JGOFTimeControl;
    white: User;
}

Properties

black: User

Black player

challenge_id: number

The ID of the challenge

creator: number

Player ID of the creator

game_id: number

The game id

game_started?: true

If exists and is true, the game has been started and the entry should be removed from the seek graph

rengo?: true

Rengo game if true

rengo_auto_start?: boolean

Whether the rengo game with automatically start

rengo_black_team?: number[]

Player ids of the players on the Black team

rengo_casual_mode?: boolean

Wether it's a Casual mode rengo game

rengo_white_team?: number[]

Player ids of the players on the White team

time_control: string

Time control system

time_control_parameters: JGOFTimeControl

Time control parameters

white: User

White player