Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 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. "STEAM_0:1:104731554" "@Coowner" // Owner
  48. "STEAM_0:0:104749561" "@Coowner" // Co-Owner
  49. "STEAM_0:0:33422873" "@HeadAdmin" // Bear - Head Admin
  50. "STEAM_0:1:51029916" "@Moderator" //dead.notes
  51. "STEAM_0:1:99977090" "@Admin" // Andy
  52. "STEAM_0:1:51029916" "@Admin" // socks_
  53. "STEAM_0:0:191309826" "@Moderator" // sage will - dj
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement