Exports

  1. "getTier" - Will return the table of information containing all of the tiers data.

Example Usage: (Server-Sided)

local lootcrates = exports['t-lootcrates']

RegisterCommand('getTier', function(source, args)
    local crate = lootcrates:getTier(args[1])

    print(json.encode(crate))
end)

Last updated