SetBlipColor
Sets the color of a blip.
Syntax
void NAPI.Blip.SetBlipColor(Blip blip, int color);
Required Arguments
- blip: The blip to set the color. Parameter input should be in Blip type
- color: The color to set. Parameter input should be in int type (https://wiki.rage.mp/index.php?title=Blip::color)
Example
Sets any existing white blip to blue blip.
C# Syntax
Example
var list = NAPI.Pools.GetAllBlips();
foreach (var blip in list)
if (NAPI.Blip.GetBlipColor(blip) == 0)
NAPI.Blip.SetBlipColor(blip, 38);