Exports

All exports are client only.

createBlip


Creates a new blip

exports['elysium_blips']:createBlip(parameters)
  • parameters: table

    • group: string

    • coords: vector3

    • text: string

    • sprite: number

    • color?: number

    • scale?: number

    • shortrange?: boolean

    • category?: number

    • disableText?: boolean

    • defaultDisabled?: boolean

    • onCreate?: function(blip: integer)

Return:

  • id: number

Parameters Explained

addTextEntry


Adds text entry to a blip by ID and matching text

exports['elysium_blips']:addTextEntry(name, text)
  • name: string

  • text: string

removeBlipById


Remove a blip by its ID

exports['elysium_blips']:removeBlipById(id)
  • id: number

removeBlipByName


Remove a blip by its name/label/text, if its a subgroup (name used more than once) then all blips with the matching name will be removed

exports['elysium_blips']:removeBlipByName(name)
  • name: string

openBlipsMenu


Opens the blip menu UI.

exports['elysium_blips']:openBlipsMenu()

Last updated