Player::isClimbing
This property returns true or false of player climbing state.
Note: this property is read-only.
Example
let playerIsClimbing = player.isClimbing
if (playerIsClimbing)
player.outputChatBox('You are climbing now!');
else
player.outputChatBox('You are not climbing right now!');