Allows us to check if this vehicle is capible to have trailers attached to it.
Used in: VCMod Main addon.
Shared Entity Vehicle:VC_isTrailerSupported()
1. Boolean Can a trailer be attached?
// Do not allow damage to entities that can have trailers attached to them (trucks most of the time) hook.Add("EntityTakeDamage", "VC_noDamageToTrucks", function(target, dmginfo) if target:VC_isTrailerSupported() then return true end end)