h1z1-server
    Preparing search index...
    interface ScreamerInstance {
        agitation: number;
        armsFreed: boolean;
        id: string;
        lastNoisePos: Float32Array<ArrayBufferLike> | null;
        npc: Npc;
        screamCooldownTimer: number;
        server: ZoneServer2016;
        state: Transitions;
        states: Record<string, (dt: number) => void>;
        stateTimer: number;
        targetCharacterId: string | null;
        targetPos: Float32Array<ArrayBufferLike> | null;
        wanderOrigin: Float32Array;
        event(eventId: Events): void;
        onTransition(_from: string, _to: string, _eventId: Events): void;
        tick(dt: number): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    agitation: number
    armsFreed: boolean
    id: string
    lastNoisePos: Float32Array<ArrayBufferLike> | null
    npc: Npc
    screamCooldownTimer: number
    states: Record<string, (dt: number) => void> = {}
    stateTimer: number
    targetCharacterId: string | null
    targetPos: Float32Array<ArrayBufferLike> | null
    wanderOrigin: Float32Array

    Methods