Skip to content

v2.1.1

Compare
Choose a tag to compare
@Frowmza Frowmza released this 26 Mar 16:56
· 17 commits to main since this release

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