Blip::name

From RAGE Multiplayer Wiki
Revision as of 11:47, 10 May 2018 by MrPancakers (talk | contribs) (Using old blip template)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function is used to change the name of the blip shown on the map. When you press Esc and hover over the blip, it will have this name.

Syntax

blip.name = 'String';

Example

This will change a blip's name to 24/7 Shop.

Server-Side

let createdBlip = mp.blips.new(140, new mp.Vector3(0, 0, 0));

createdBlip.name = '24/7 Shop';

See Also