Scripts/resources/[hp]/hp_carcontrol/Common/functions.lua

13 lines
282 B
Lua
Raw Normal View History

2024-12-29 19:48:41 +00:00
function IsCarIgnored(vehicle)
local plate = GetVehicleNumberPlateText(vehicle)
local isIgnored = false
for _,v in ipairs(Config.IgnoredPlates) do
if v == plate then
isIgnored = true
break
end
end
return isIgnored
end