Guest User

Untitled

a guest
Jan 20th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. //
  2. // READ THIS CAREFULLY! SEE BOTTOM FOR EXAMPLES
  3. //
  4. // For each admin, you need three settings:
  5. // "identity""permissions""password"
  6. //
  7. // For the Identity, you can use a SteamID or Name. To use an IP address, prepend a ! character.
  8. // For the Permissions, you can use a flag string and an optional password.
  9. //
  10. // PERMISSIONS:
  11. // Flag definitions are in "admin_levels.cfg"
  12. // You can combine flags into a string like this:
  13. // "abcdefgh"
  14. //
  15. // If you want to specify a group instead of a flag, use an @ symbol. Example:
  16. // "@Full Admins"
  17. //
  18. //You can also specify immunity values. Two examples:
  19. //"83:abcdefgh"//Immunity is 83, flags are abcdefgh
  20. //"6:@Full Admins"//Immunity is 6, group is "Full Admins"
  21. //
  22. //Immunity values can be any number. An admin cannot target an admin with
  23. //a higher access value (see sm_immunity_mode to tweak the rules). Default
  24. // immunity value is 0 (no immunity).
  25. //
  26. // PASSWORDS:
  27. // Passwords are generally not needed unless you have name-based authentication.
  28. // In this case, admins must type this in their console:
  29. //
  30. // setinfo "KEY" "PASSWORD"
  31. //
  32. // Where KEY is the "PassInfoVar" setting in your core.cfg file, and "PASSWORD"
  33. // is their password. With name based authentication, this must be done before
  34. // changing names or connecting. Otherwise, SourceMod will automatically detect
  35. // the password being set.
  36. //
  37. ////////////////////////////////
  38. // Examples: (do not put // in front of real lines, as // means 'comment')
  39. //
  40. // "STEAM_0:1:16""bce"//generic, kick, unban for this steam ID, no immunity
  41. // "!127.0.0.1""99:z"//all permissions for this ip, immunity value is 99
  42. // "BAILOPAN""abc""Gab3n"//name BAILOPAN, password "Gab3n": gets reservation, generic, kick
  43. //
  44. ////////////////////////////////
  45.  
  46.  
  47.  
  48.  
  49. Admins
  50. {
  51. "wonka"
  52. {
  53. "auth" "steam"
  54. "identity" "STEAM_0:1:44196458"
  55. "flags" "z"
  56. "immunity" "99"
  57. "group" "root"
  58. }
  59.  
  60. "wonka2"
  61. {
  62. "auth" "steam"
  63. "identity" "STEAM_0:1:44196458"
  64. "flags" "abc"
  65. "immunity" "5"
  66. "group" "normal"
  67. }
  68.  
  69.  
  70.  
  71. }
Add Comment
Please, Sign In to add comment