registerCoords

-- ARGUMENTS
-- id:                     string
-- characterRestrictions:  table [characterId,...]          (optional)
-- jobRestrictions:        table {jobName = minRank,...}    (optional)
-- groupRestrictions:      table {groupName = minRank,...}  (optional)

-- RETURNS
-- nil

local id = "myBlip"
local characterRestrictions = {"Char1:1234","Char2:1234"}

local jobRestrictions = {
  police = 2
}

local groupRestrictions = {
  ballas = 2
}

ti.blips.registerCoords(
    id,
    characterRestrictions,
    jobRestrictions,
    groupRestrictions
)

Last updated