10 lines
227 B
Lua
10 lines
227 B
Lua
Citizen.CreateThread(function()
|
|
while true do
|
|
Citizen.Wait(1)
|
|
if IsPedOnFoot(GetPlayerPed(-1)) then
|
|
SetRadarZoom(1100)
|
|
elseif IsPedInAnyVehicle(GetPlayerPed(-1), true) then
|
|
SetRadarZoom(1100)
|
|
end
|
|
end
|
|
end) |