Skip to content

Discoverability

These settings control how visible dealers and hiring spots are to players on your server. All options are in config.lua.

Recruiter Spot Blips

Shows map blips at hiring spots so players can find where to hire a dealer.

lua
Config.recruiterBlip = {
    enabled    = true,
    sprite     = 480,
    color      = 6,
    scale      = 0.8,
    shortRange = false,
}
OptionPurposeDefault
enabledShow or hide recruiter blips on the map.true
spriteBlip icon number from the FiveM blip sprite list.480
colorBlip color index from the FiveM blip color list.6 (dark grey)
scaleBlip size.0.8
shortRangeIf true, the blip only appears when the player is close. Set true for servers that prefer players to discover spots organically.false

Owner Dealer Blips

Shows a map blip for each of the owner's active dealers. Only the dealer's owner sees these — other players and cops never do.

lua
Config.ownerBlip = {
    enabled    = true,
    sprite     = 480,
    color      = 2,
    scale      = 0.75,
    shortRange = true,
}
OptionPurposeDefault
enabledShow or hide owner dealer blips.true
spriteBlip icon number.480
colorBlip color index.2 (green)
scaleBlip size.0.75
shortRangeIf true, the blip only appears when the owner is close.true

Join Hint

lua
Config.joinHint = true
OptionPurposeDefault
Config.joinHintShow a one-time hint after a player connects, pointing them at the burner command. Only fires once per session.true

Dealer Presence

lua
Config.dealerHint = {
    enabled  = true,
    distance = 20.0,
    text     = '~g~$',
}
Config.dealerGreets = true
Config.buyAnimation = true
OptionPurposeDefault
Config.dealerHint.enabledShow a floating label above working dealers.true
Config.dealerHint.distanceMetres within which the floating label is visible.20.0
Config.dealerHint.textText that hovers above the dealer. Supports GTA color codes (~g~, ~r~, etc.).'~g~$'
Config.dealerGreetsDealer calls out to nearby players while working a corner.true
Config.buyAnimationHand-over animation plays when a player buys from or delivers to a dealer.true

Hardcore servers

Set Config.recruiterBlip.shortRange = true and Config.dealerHint.enabled = false to make dealers feel more hidden and require players to discover the system through roleplay.

Robicore