Scripts/resources/[hp]/hp_carcontrol/Common/functions.lua
2024-12-29 20:48:41 +01:00

13 lines
282 B
Lua

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