Player::isAiming

From RAGE Multiplayer Wiki
Revision as of 19:46, 4 January 2017 by Niks (talk | contribs)

This property returns true or false of player aim state.

Note: this property is read-only.

Example

let playerIsAiming = player.isAiming
if (playerIsAiming)
  player.outputChatBox('You are aiming right now!');
else
  player.outputChatBox('You are not aiming right now!');