Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ranks/ranks.lua
- ranks.register("admin", {
- prefix = "ADMIN",
- colour = {a = 255, r = 230, g = 33, b = 23},
- grant_missing = true,
- privs = {
- -- basic
- interact = true,
- shout = true,
- fly = true,
- fast = true,
- zoom = true,
- -- creative
- creative = true,
- worldedit = true,
- travelpoints = true,
- travelpads = true,
- teleport = true,
- areas = true,
- noclip = true,
- sign_editor = true,
- home = true,
- -- tutor
- bring = true,
- areas = true,
- kick = true,
- areas_high_limit = true,
- ban = true,
- tpglobal = true,
- rollback = true,
- give = true,
- settime = true,
- rank = true,
- privs = true,
- -- admin
- server = true,
- password = true,
- debug = true,
- protection_bypass = true,
- }
- })
- ranks.register("tutor", {
- prefix = "TUTOR",
- colour = {a = 255, r = 255, g = 83, b = 37},
- grant_missing = true,
- privs = {
- -- basic
- interact = true,
- shout = true,
- fly = true,
- fast = true,
- zoom = true,
- -- creative
- creative = true,
- worldedit = true,
- travelpoints = true,
- travelpads = true,
- teleport = true,
- noclip = true,
- sign_editor = true,
- home = true,
- -- tutor
- areas = true,
- bring = true,
- kick = true,
- areas_high_limit = true,
- ban = true,
- tpglobal = true,
- rollback = true,
- give = true,
- settime = true,
- rank = true,
- privs = true,
- }
- })
- ranks.register("creative", {
- prefix = "CREATIVE",
- colour = {a = 255, r = 255, g = 132, b = 0},
- grant_missing = true,
- privs = {
- -- basic
- interact = true,
- shout = true,
- fly = true,
- fast = true,
- zoom = true,
- -- creative
- creative = true,
- worldedit = true,
- travelpoints = true,
- travelpads = true,
- teleport = true,
- noclip = true,
- sign_editor = true,
- home = true,
- settime = true,
- }
- })
- ranks.register("basic", {
- prefix = "BASIC",
- colour = {a = 255, r = 255, g = 80, b = 71},
- grant_missing = true,
- privs = {
- interact = true,
- shout = true,
- fly = true,
- fast = true,
- }
- })
- ranks.register("visitor", {
- prefix = "VISITOR",
- colour = {a = 255, r = 255, g = 80, b = 71},
- grant_missing = true,
- revoke_extra = true,
- privs = {
- shout = true,
- fly = true,
- fast = true,
- travelpoints = true,
- }
- })
- ranks.register("banned", {
- prefix = "BANNED",
- colour = {a = 255, r = 255, g = 80, b = 71},
- grant_missing = true,
- revoke_extra = true,
- privs = {
- shout = true,
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement