Exports For Developers

All exports listed on the Client and Server subpages are completely optional and should only be used if you know what you are doing.

Check Insurance

This export allows to check wether or not a player has a valid health insurance

local src = source
local hasInsurance = exports['loki_prescriptions']:hasInsurance(src)
if hasInsurance then
    print("Player has insurance")
else
    print("Player has no insurance")
end

Last updated

Was this helpful?