Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 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. "STEAM_1:1:2875259" "9:z" //Yojimbo Level 9 Immunity With Rcon
  47. "STEAM_1:0:6359817" "9:z" //Bri Level 9 Immunity With Rcon
  48. "STEAM_1:0:34761691" "9:z" //Dim Level 9 Immunity With Rcon
  49. "STEAM ID HERE" "9:z" //Sud Level 9 Immunity With Rcon
  50. "STEAM_1:0:8588006" "8:bcdefghklmn" //Krisis Level 8 Immunity No Rcon
  51. "STEAM_1:1:35234232" "8:bcdefghklmn" //Zero Level 8 Immunity No Rcon
  52. "STEAM ID HERE" "8:bcefkln" //Master Chief Level 8 Immunity No Rcon
  53. "STEAM ID HERE" "8:bcefkln" //NAME Level 8 Immunity No Rcon
  54. "STEAM ID HERE" "8:bcefkln" //NAME Level 8 Immunity No Rcon
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement