Interface PlayerRequest

Influence allies aggresion score towards a player

interface PlayerRequest {
    hate?: number;
    lastAttackedBy?: number;
    playerName: string;
    timeout?: number;
}

Properties

hate?: number

The level of hatred towards the player, ranging from 0 to 1 where 1 is the highest consideration. This value affects combat aggression and targeting.

lastAttackedBy?: number

The last time this player has attacked you.

playerName: string

The name of the player.

timeout?: number

Tick after which the request should be ignored.

Generated using TypeDoc