Entity::type

From RAGE Multiplayer Wiki

Returns type of entity.

Available types:

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

Getter

  • String

Example

Server-Side

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

See Also