Advertisement
actuallykane

Default Groups

Nov 26th, 2018
63,808
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. -- User group, lowest possible.
  2. user = Group("user", "")
  3.  
  4. -- Admin, is allowed to run administrative functions
  5. admin = Group("admin", "user")
  6.  
  7. -- Superadmin, can run any command, bypasses command levels
  8. superadmin = Group("superadmin", "admin")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement