Skip to content
On this page

isStealthy()

Returns true if the player is hunched over walking slowly.

Function Definition

ts
public readonly isStealthy: boolean;

Returns

  • boolean

Documentation

Examples

ts
if (player.isStealthy) {
    console.log(`They are being super sneaky!`);
} else {
    console.log(`They are not being super sneaky!`);
}

Documentation Created with ❤️ by Stuyk