Advertisement
Guest User

Untitled

a guest
Feb 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. Groups
  2. {
  3. /**
  4. * Allowed properties for a group:
  5. *
  6. * "flags" - Flag string.
  7. * "immunity" - Immunity level number, or a group name.
  8. * If the group name is a number, prepend it with an
  9. * '@' symbol similar to admins_simple.ini. Users
  10. * will only inherit the level number if it's higher
  11. * than their current value.
  12. */
  13. "Default"
  14. {
  15. "immunity" "1"
  16. }
  17.  
  18. "Fundador"
  19. {
  20. /**
  21. * You can override commands and command groups here.
  22. * Specify a command name or group and either "allow" or "deny"
  23. * Examples:
  24. * ":CSDM" "allow"
  25. * "csdm_enable" "deny"
  26. */
  27. Overrides
  28. {
  29. }
  30. "flags" "abcdefghizst"
  31.  
  32. /* Largish number for lots of in-between values. */
  33. "immunity" "99"
  34. }
  35. "Admin"
  36. {
  37. /**
  38. * You can override commands and command groups here.
  39. * Specify a command name or group and either "allow" or "deny"
  40. * Examples:
  41. * ":CSDM" "allow"
  42. * "csdm_enable" "deny"
  43. */
  44. Overrides
  45. {
  46. }
  47. "flags" "abcdefghizs"
  48.  
  49. /* Largish number for lots of in-between values. */
  50. "immunity" "99"
  51. }
  52. "Mods"
  53. {
  54. Overrides
  55. {
  56. "sm_mute" "allow"
  57. "sm_gag" "allow"
  58. "sm_silence" "allow"
  59. "sm_unmute" "allow"
  60. "sm_ungag" "allow"
  61. "sm_unsilence" "allow"
  62. "sm_csay" "allow"
  63. }
  64. "flags" "abcdse"
  65. "immunity" "60"
  66.  
  67. }
  68. "VIP"
  69. {
  70. Overrides
  71. {
  72. "+sm_laser" "allow"
  73. }
  74. "flags" "as"
  75. "immunity" "30"
  76.  
  77. }
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement