@kayahr/ed-journal
    Preparing search index...

    Interface LoadGame

    Written at startup when loading from main menu into the game.

    interface LoadGame {
        build?: string;
        Commander: string;
        Credits: number;
        event: "LoadGame";
        FID?: string;
        FuelCapacity?: number;
        FuelLevel?: number;
        GameMode?: GameMode;
        gameversion?: string;
        Group?: string;
        Horizons?: boolean;
        language?: string;
        Loan: number;
        Odyssey?: boolean;
        Ship?: string;
        Ship_Localised?: string;
        ShipID?: ID;
        ShipIdent?: string;
        ShipName?: string;
        StartDead?: boolean;
        StartLanded?: boolean;
        timestamp: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    build?: string

    The game build. Set since Odyssey Update 5 (July 2021).

    Commander: string

    The commander's name.

    Credits: number

    Current credit balance.

    event: "LoadGame"

    The type of event.

    FID?: string

    The player ID. Not set in older journals (before December 2018).

    FuelCapacity?: number

    Size if main tank. Not set in journals from older game versions or when currently flying in an Apex Shuttle.

    FuelLevel?: number

    Current fuel level. Not set in journals from older game versions or when currently flying in an Apex Shuttle.

    GameMode?: GameMode

    The game mode. Can be missing for unknown reasons, maybe a game bug.

    gameversion?: string

    The game version. Set since Odyssey Update 5 (July 2021).

    Group?: string

    Name of the group (if in a group). Not set if game mode is Open or Solo.

    Horizons?: boolean

    True when game has Horizons. Not set before Horizons.

    language?: string

    The game language. Set since Odyssey Update 5 (July 2021).

    Loan: number

    Current loan.

    Odyssey?: boolean

    True when game has Odyssey. Not set before Odyssey.

    Ship?: string

    The current ship type. Can be missing for unknown reasons, maybe a game bug.

    Ship_Localised?: string

    Localised ship type. Not always set unfortunately, so a custom translation from Ship value is needed.

    ShipID?: ID

    The ID of the current ship. Not set if player is currently in an Apex Shuttle.

    ShipIdent?: string

    User-defined ship ID. Not set in journals from older game versions or when currently flying in an Apex Shuttle.

    ShipName?: string

    User-defined ship name. Not set in journals from older game versions or when currently flying in an Apex Shuttle.

    StartDead?: boolean

    True if starting dead. See Resurrect.

    StartLanded?: boolean

    True if landed.

    timestamp: string

    The time in GMT, ISO 8601.