Interface IXR_actor_stats

namespace actor_stats

interface IXR_actor_stats {
    add_points(
        this: void,
        value1: string,
        value2: string,
        value3: number,
        value4: number,
    ): void;
    add_points_str(
        this: void,
        value1: string,
        value2: string,
        value3: string,
    ): void;
    get_points(this: void, value: string): number;
    remove_from_ranking(this: void, object_id: number): void;
}

Methods

  • Parameters

    • this: void
    • value1: string
    • value2: string
    • value3: number
    • value4: number

    Returns void

  • Parameters

    • this: void
    • value1: string
    • value2: string
    • value3: string

    Returns void

  • Parameters

    • this: void
    • value: string

    Returns number

  • Parameters

    • this: void
    • object_id: number

    Returns void