Structure

This is the rank structure for SAM.

{
    name = "rank name",
    inherit = "rank that we inherit from",
    
    -- rank immunity | min ~ max = 0 ~ 100
    immunity = 50,
    
    -- ban limit in minutes | min ~ max = 0 ~ 31536000 | 0 = forever
    ban_limit = 100,

    data = {
        -- permissions/limits' values are dynamic
        -- they are just used for this example

        permissions = {
            slay = true,
            slap = false,
        },

        limits = {
            -- how many props u can spawn
            -- min ~ max = -1 ~ 10000
            -- -1 = unlimited
            -- 0 = you can't spawn
            props = 200
        },
    }
}

Last updated