Scripts/resources/[qb]/[qb_jobs]/qb-policejob/client/tracker.lua

59 lines
1.9 KiB
Lua
Raw Normal View History

2024-12-29 20:06:22 +00:00
RegisterNetEvent('police:client:CheckDistance', function()
local player, distance = QBCore.Functions.GetClosestPlayer()
if player ~= -1 and distance < 2.5 then
local playerId = GetPlayerServerId(player)
TriggerServerEvent("police:server:SetTracker", playerId)
else
QBCore.Functions.Notify(Lang:t("error.none_nearby"), "error")
end
end)
RegisterNetEvent('police:client:SetTracker', function(bool)
local trackerClothingData = {
outfitData = {
["accessory"] = { item = -1, texture = 0}, -- Nek / Das
}
}
if bool then
trackerClothingData.outfitData = {
["accessory"] = { item = 13, texture = 0}
}
TriggerEvent('qb-clothing:client:loadOutfit', trackerClothingData)
else
TriggerEvent('qb-clothing:client:loadOutfit', trackerClothingData)
end
end)
RegisterNetEvent('police:client:SendTrackerLocation', function(requestId)
local ped = PlayerPedId()
local coords = GetEntityCoords(ped)
TriggerServerEvent('police:server:SendTrackerLocation', coords, requestId)
end)
RegisterNetEvent('police:client:TrackerMessage', function(msg, coords)
PlaySound(-1, "Lose_1st", "GTAO_FM_Events_Soundset", 0, 0, 1)
QBCore.Functions.Notify(msg, 'police')
local transG = 250
local blip = AddBlipForCoord(coords.x, coords.y, coords.z)
SetBlipSprite(blip, 458)
SetBlipColour(blip, 1)
SetBlipDisplay(blip, 4)
SetBlipAlpha(blip, transG)
SetBlipScale(blip, 1.0)
BeginTextCommandSetBlipName('STRING')
AddTextComponentString(Lang:t('info.ankle_location'))
EndTextCommandSetBlipName(blip)
while transG ~= 0 do
Wait(180 * 4)
transG = transG - 1
SetBlipAlpha(blip, transG)
if transG == 0 then
SetBlipSprite(blip, 2)
RemoveBlip(blip)
return
end
end
end)