Player::isJumping

From RAGE Multiplayer Wiki

This function returns 1 or 0 of player jumping state.

Note: this property is read-only.

Example

let playerIsJumping = player.isJumping()
if (playerIsJumping === 1)
  player.outputChatBox('You are jumping right now!');
else
  player.outputChatBox('You are not jumping right now!');

See Also