merhabalar forumdaki daha önceki konulara baktım ancak uygulamada pek başarlı olamadım bende bulunan f3 radial scriptinde en yakın konumdaki garajı veya benzinliği işaretliyor bunu blip açıp kapamaya nasıl çevireblirim acaba kod satırı ise şöyle
Kod:
RegisterNetEvent('blips:garage')
AddEventHandler('blips:garage', function()
local coords = GetEntityCoords(PlayerPedId())
local closest = 1000
local closestCoords
for _, gasStationCoords in pairs(garages) do
local dstcheck = GetDistanceBetweenCoords(coords, gasStationCoords)
if dstcheck < closest then
closest = dstcheck
closestCoords = gasStationCoords
end
end
ClearGpsPlayerWaypoint()
SetNewWaypoint(closestCoords)
exports['mythic_notify']:SendAlert('error', 'Navigasyona en yakın benzinliği işaretledin!')
end)
garages = {}
garages = {
vector3(299.81, -191.98, 61.57)
}
RegisterNetEvent("cylex:togglegarages")
AddEventHandler("cylex:togglegarages", function()
-- DeleteWaypoint()
local currentGasBlip = 0
local coords = GetEntityCoords(PlayerPedId())
local closest = 1000
local closestCoords2
for k,v in pairs(Garages) do
local dstcheck = GetDistanceBetweenCoords(coords, v)
if dstcheck < closest then
closest = dstcheck
closestCoords2 = v
end
end
SetNewWaypoint(closestCoords2)
exports["mythic_notify"]:SendAlert("inform", "En yakın garaj GPS'de işaretlendi.", 3500)
end)