The RpgLogs Scripting API
    Preparing search index...

    Interface ActorInstance

    interface ActorInstance {
        gameId: number;
        id: number;
        idInReport: number;
        instanceId: number;
        name: string;
        subType: string;
        type: ActorType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    gameId: number

    The game id of the actor.

    id: number

    The id of the actor.

    idInReport: number

    The id of the actor within its containing report.

    instanceId: number

    The instance id of the specific actor instance.

    name: string

    The name of the actor in the user's desired language.

    subType: string

    The subType of the actor. This will be the job (for FF) or class (for other games) of players. NPCs can be "Boss" or "NPC".

    type: ActorType

    The type of the actor. This will be Player, Pet or NPC.