πServer-Exports
Check if a Vehicle has Insurance
exports['m-Insurance']:HasCarInsurance('ABC123', function(hasInsurance)
if hasInsurance then
print("Vehicle is insured")
else
print("Vehicle is not insured")
end
end)Check if a Vehicle has Registration
exports['m-Insurance']:HasCarRegistration('ABC123', function(hasRegistration)
if hasRegistration then
print("Vehicle is registered")
else
print("Vehicle is not registered")
end
end)Check if a Player has Health Insurance
Check if a Player has Home Insurance
Get Insurance Data for a Player or Vehicle
Check if a Vehicle have Documents Suspended
Give Vehicle Insurance
Give Vehicle Registration
Give Health Insurance
Give Home Insurance
Remove Vehicle Insurance
Remove Vehicle Registration
Remove Health Insurance
Remove Home Insurance
Last updated