GetBlipColor
Gets the color of a blip.
- blip: The blip to get the color from. Parameter input should be in Blip type
{{#tag:syntaxhighlight|var list = Pools.GetAllBlips();
foreach (Blip blip in list) {
if (``Blip.GetBlipColor(blip) == 0)
\{
``Blip.SetBlipColor(blip, 38);
\}
} }} }}