Player::seat

From RAGE Multiplayer Wiki
Revision as of 13:48, 17 April 2017 by CocaColaBear (talk | contribs)

This property returns players vehicle seat or nil.

Note: this property is read-only.

Example

if (player.vehicle)
  player.outputChatBox('Your vehicle seat is ' + player.seat);
else
  player.outputChatBox('You are not in the vehicle right now!');

See Also