Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. 
  2. /**
  3. * USE THIS SECTION TO DECLARE DETAILED ADMIN PROPERTIES.
  4. *
  5. * Each admin should have its own "Admin" section, followed by a name.
  6. * The name does not have to be unique.
  7. *
  8. * Available properties: (Anything else is filtered as custom)
  9. * "auth" - REQUIRED - Auth method to use. Built-in methods are:
  10. * "steam" - Steam based authentication
  11. * "name" - Name based authentication
  12. * "ip" - IP based authentication
  13. * Anything else is treated as custom.
  14. * Note: Only one auth method is allowed per entry.
  15. *
  16. * "identity" - REQUIRED - Identification string, for example, a steamid or name.
  17. * Note: Only one identity is allowed per entry.
  18. *
  19. * "password" - Optional password to require.
  20. * "group" - Adds one group to the user's group table.
  21. * "flags" - Adds one or more flags to the user's permissions.
  22. * "immunity" - Sets the user's immunity level (0 = no immunity).
  23. * Immunity can be any value. Admins with higher
  24. * values cannot be targetted. See sm_immunity_mode
  25. * to tweak the rules. Default value is 0.
  26. *
  27. * Example:
  28. "BAILOPAN"
  29. {
  30. "auth" "steam"
  31. "identity" "STEAM_0:1:16"
  32. "flags" "abcdef"
  33. }
  34. *
  35. */
  36. "Admins"
  37. {
  38. "NICK"
  39. {
  40. "auth" "steam"
  41. "identity" "STEAMID"
  42. "flags" "aoz"
  43. "immunity" "100"
  44. }
  45.  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement