Entity::type

From RAGE Multiplayer Wiki
Revision as of 14:17, 13 May 2017 by Kemperrr (talk | contribs)

Returns type of entity.

Available types:

  • player
  • vehicle
  • object
  • pickup
  • blip
  • checkpoint
  • marker
  • colshape

Example

Server-Side
const entity = mp.players.at(0);
console.log(entity.type) // return 'player'

See Also