getBlipIcon | Multi Theft Auto: Wiki Skip to content

getBlipIcon

Client-side
Server-side
Shared

Pair: setBlipIcon

This function returns the icon a blip currently has. See Radar Blips.

OOP Syntax Help! I don't understand this!

  • Method:blip:getIcon(...)
  • Variable: .icon

Syntax

int|false getBlipIcon ( ​blip theBlip )
Required arguments
  • theBlip: The blip we're getting the icon number of.

Returns

Returns an int indicating which icon the blip has. false if blip element is invalid.

  • int|false: icon

Code Examples

shared

This example will find all the blips that exist and set them all to the default blip icon.

-- Retrieve a table containing all the blips that exist
local blips = getElementsByType("blip")
-- Loop through the list, storing the blip from the table in the variable blipValue
for blipKey, blipValue in ipairs(blips) do
-- Retrieve the blip's icon into the variable 'blipIcon'
local blipIcon = getBlipIcon(blipValue)
-- If the blip's icon wasn't the default already
if (blipIcon ~= 0) then
-- Set the blip's icon to the default
setBlipIcon(blipValue, 0)
end
end