concil 0 Posted August 19 (edited) Hello Guys, is there any way to create player only blips? like players who have a job and for them create the blips... Greetz, Concil Edited August 19 by concil Share this post Link to post Share on other sites
LeonMrBonnie 5 Posted August 19 Create an event clientside where you create the blip, and call that event for the player that should see the blip. Share this post Link to post Share on other sites
concil 0 Posted August 19 (edited) Thanks buddy works perfectly for me ... for all who wants the same for client side var jobBlips = new Array(); mp.events.add('createJobBlip', (player, ID, position, name, color, shortRange) => { jobBlips[jobBlips.length + 1] = mp.blips.new(parseInt(ID), position, { name: name, color: parseInt(color), shortRange: (shortRange === 'true'), }); }); mp.events.add('removeJobBlips', (player) => { jobBlips.forEach(function(object, index) { jobBlips[index].destroy(); }); jobBlips = null; jobBlips = new Array(); }); Edited August 19 by concil Share this post Link to post Share on other sites