v2.1.1
What changed
- Add
canInteract
(whether to show the mod or not)
-- example
canInteract = function(vehicle)-- we check if vehicle has any extras, if not we return false so menu doesn't show
for extra = 0, 20 do
if DoesExtraExist(vehicle, extra) then
return true
end
end
return false
end