Hey, how can i add 2 yellow wrench blips on map?
I tryed so many edits in config.lua, but it’s only set on 1 position.
I would like to open 2 shops, the 2 shop is working perfectly, i just need the blips for each other.
(sorry for my bad english)
Hey, how can i add 2 yellow wrench blips on map?
I tryed so many edits in config.lua, but it’s only set on 1 position.
I would like to open 2 shops, the 2 shop is working perfectly, i just need the blips for each other.
(sorry for my bad english)
client > main.lua > line 828-840
Just copy and paste add the cords in and hopefully it should work
Citizen.CreateThread(function()
local blip = AddBlipForCoord(x,y,z)
SetBlipSprite (blip, 446)
SetBlipDisplay(blip, 4)
SetBlipScale (blip, 1.2)
SetBlipColour (blip, 5)
SetBlipAsShortRange(blip, true)
BeginTextCommandSetBlipName('STRING')
AddTextComponentSubstringPlayerName(_U('mechanic'))
EndTextCommandSetBlipName(blip)
end)
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.