Type Alias NetworkHint

NetworkHint: {
    entrance: string;
    finding_player: number;
    found: boolean;
    item: number;
    item_flags: number;
    location: number;
    receiving_player: number;
}

An object representing a hint information for a particular item and location that contains it.

Type declaration

  • Readonlyentrance: string

    The name of the entrance to the location where this item is located.

  • Readonlyfinding_player: number

    The id of the player who has this item in their world.

  • Readonlyfound: boolean

    Whether this item has already been found.

  • Readonlyitem: number

    The id of this item.

  • Readonlyitem_flags: number

    The classification bit flags for this item. See itemsHandlingFlags for known flags.

  • Readonlylocation: number

    The id of the location for this item.

  • Readonlyreceiving_player: number

    The id of the player who owns this item.