Player::isOnLadder

From RAGE Multiplayer Wiki
Revision as of 16:59, 17 May 2019 by RoboN1X (talk | contribs) (category)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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!");
}