Перейти к содержанию

Player::isClimbing

Материал из RAGE MP Wiki Archive
Версия от 22:24, 20 апреля 2023; imported>ImperiumXVII
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

This property returns true or false of player climbing state.

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

Example

<source lang="javascript"> let playerIsClimbing = player.isClimbing() if (playerIsClimbing)

 player.outputChatBox('You are climbing right now!');

else

 player.outputChatBox('You are not climbing right now!');

</source>

See Also