Samppaa Posted August 3, 2017 Share Posted August 3, 2017 Hey, does anyone know native function for drawing different colored circles on the map? For example in GTA online, sometimes you see those red circles that mean some kind of gang warfare on the map. Also when the police move and they chase you, they are surrounded by a blue circle. How can I draw these kinds of circles on the location of my choosing? Link to comment Share on other sites More sharing options...
sollaholla Posted August 3, 2017 Share Posted August 3, 2017 Are you using c sharp? Link to comment Share on other sites More sharing options...
BeyondTom Posted August 3, 2017 Share Posted August 3, 2017 (edited) Hey, it would appear that you are looking for the 'Blip" native. I tested this out quickly and it drew a red circle on the map/ mini-map. You can easily change the sprite, alpha and many other features found in the UI section of the native library. I have attached a few useful links in code comments also. The 'yourCoords' are Vector3 coords to be set by you. //http://www.dev-c.com/nativedb/ns/UIBlip blip = Function.Call<Blip>(Hash.ADD_BLIP_FOR_COORD, yourCoords.X, yourCoords.Y, yourCoords.Z);Function.Call(Hash.SET_BLIP_SCALE, blip, 1.0);Function.Call(Hash.SET_BLIP_ALPHA, blip, 100);//Blip IDs: https://www.gtamodding.com/wiki/Blip_Sprite_IDsFunction.Call(Hash.SET_BLIP_SPRITE, blip, 4);//Blip Colors: http://gtaforums.com/topic/864881-all-blip-color-ids-pictured/Function.Call(Hash.SET_BLIP_COLOUR, blip, 1); Edited August 3, 2017 by BeyondTom Link to comment Share on other sites More sharing options...