https://i.hizliresim.com/gou8gb4.gif https://i.hizliresim.com/gou8gb4.gif

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Fivem REHBER F3 BLİP KAPATMA AÇMA

Katılım
23 Tem 2021
Mesajlar
430
Merhabalar.F3'e blip kapatma açmayı nasıl entegre etmenizi anlatıcağım.

Öncelikle her hangi bir client.lua'nın içine attığım kodları yazın.




Kod:
Kod:
RegisterNetEvent("fantastic:blipAcKapa")

AddEventHandler("fantastic:blipAcKapa", function()

if blipc then

pasifblip()

blipc = false

else

aktifblip()

blipc = true

end

end)



function aktifblip()

for k,v in pairs(Config.GasStations) do

local blipc = AddBlipForCoord(v.coords)

SetBlipSprite(blipc, 361)

SetBlipScale(blipc, 0.5)

SetBlipColour(blipc, 60)

SetBlipDisplay(blipc, 4)

SetBlipAsShortRange(blipc, atrue)



BeginTextCommandSetBlipName("STRING")

AddTextComponentString("Garaj")

EndTextCommandSetBlipName(blipc)

table.insert(aktifblipler, blipc)

end

end



function pasifblip()

for i = 1, #aktifblipler do

RemoveBlip(aktifblipler)

end



for i = 1, #aktifblipler do

table.remove(aktifblipler)

end

end



Config.Garages = {

[1] = { coords = vector3(99.999, 999.999, 999.999), r = 15},



}


ondan sonra f3 config.lua'nın içine gelip:

Kod:
Kod:
['blips:garages'] = {

title = "Garajlar",

icon = "#blips-garages",

functionName = "fantastic:blipAcKapa"

},
 
Geri
Üst