Player::isOnLadder

From RAGE Multiplayer Wiki

Returns whether the specified ped is on ladder.

Note: this property is read-only.

Getter

  • Boolean - true if player ped is on ladder, false otherwise.

Example

Server-Side
if (player.isOnLadder) {
	player.outputChatBox("You are climbing on ladder right now!");
}