Player::isClimbing

From RAGE Multiplayer Wiki
Revision as of 22:24, 20 April 2023 by ImperiumXVII (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This property returns true or false of player climbing state.

Note: TypeScript types are wrong - this is not a boolean, but a method.

Example

let playerIsClimbing = player.isClimbing()
if (playerIsClimbing)
  player.outputChatBox('You are climbing right now!');
else
  player.outputChatBox('You are not climbing right now!');

See Also