Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. /**
  2. * USE THIS SECTION TO DECLARE DETAILED ADMIN PROPERTIES.
  3. *
  4. * Each admin should have its own "Admin" section, followed by a name.
  5. * The name does not have to be unique.
  6. *
  7. * Available properties: (Anything else is filtered as custom)
  8. * "auth" - REQUIRED - Auth method to use. Built-in methods are:
  9. * "steam" - Steam based authentication
  10. * "name" - Name based authentication
  11. * "ip" - IP based authentication
  12. * Anything else is treated as custom.
  13. * Note: Only one auth method is allowed per entry.
  14. *
  15. * "identity" - REQUIRED - Identification string, for example, a steamid or name.
  16. * Note: Only one identity is allowed per entry.
  17. *
  18. * "password" - Optional password to require.
  19. * "group" - Adds one group to the user's group table.
  20. * "flags" - Adds one or more flags to the user's permissions.
  21. * "immunity" - Sets the user's immunity level (0 = no immunity).
  22. * Immunity can be any value. Admins with higher
  23. * values cannot be targetted. See sm_immunity_mode
  24. * to tweak the rules. Default value is 0.
  25. *
  26. * Example:
  27. "BAILOPAN"
  28. {
  29. "auth" "steam"
  30. "identity" "STEAM_0:1:16"
  31. "flags" "abcdef"
  32. }
  33. *
  34. */
  35. Admins
  36. {
  37. "Godztuna"
  38. {
  39. "auth" "steam"
  40. "immunity" "99"
  41. "identity" "STEAM_0:0:58864004"
  42. "flags" "z"
  43. }
  44.  
  45. "Chino"
  46. {
  47. "auth" "steam"
  48. "immunity" "99"
  49. "identity" "STEAM_0:0:28935589"
  50. "flags" "z"
  51. }
  52.  
  53. "mTY"
  54. {
  55. "auth" "steam"
  56. "immunity" "99"
  57. "identity" "STEAM_1:1:56734502"
  58. "flags" "z"
  59. }
  60.  
  61. "Papi"
  62. {
  63. "auth" "steam"
  64. "immunity" "99"
  65. "identity" "STEAM_1:1:20734598"
  66. "flags" "z"
  67. }
  68.  
  69. "Tincho"
  70. {
  71. "auth" "steam"
  72. "immunity" "99"
  73. "identity" "STEAM_0:1:51359519"
  74. "flags" "z"
  75. }
  76.  
  77. "Chuli"
  78. {
  79. "auth" "steam"
  80. "immunity" "99"
  81. "identity" "STEAM_0:0:71616655"
  82. "flags" "z"
  83. }
  84.  
  85. "Rabeat"
  86. {
  87. "auth" "steam"
  88. "immunity" "99"
  89. "identity" "STEAM_0:0:43742409"
  90. "flags" "z"
  91. }
  92.  
  93. "minds"
  94. {
  95. "auth" "steam"
  96. "immunity" "99"
  97. "identity" "STEAM_1:1:40480346"
  98. "flags" "z"
  99. }
  100.  
  101. "emaa"
  102. {
  103. "auth" "steam"
  104. "immunity" "99"
  105. "identity" "STEAM_0:1:39388593"
  106. "flags" "z"
  107. }
  108.  
  109. "LeGranade"
  110. {
  111. "auth" "steam"
  112. "immunity" "5"
  113. "identity" "STEAM_1:0:67375415"
  114. "flags" "z"
  115. }
  116. "shazam"
  117. {
  118. "auth" "steam"
  119. "immunity" "5"
  120. "identity" "STEAM_0:1:80594959"
  121. "flags" "abcdefgjk"
  122. }
  123.  
  124. "Frank"
  125. {
  126. "auth" "steam"
  127. "immunity" "5"
  128. "identity" "STEAM_0:1:60885013"
  129. "flags" "z"
  130. "group" "admins"
  131. }
  132.  
  133. "WallyChaca"
  134. {
  135. "auth" "steam"
  136. "immunity" "5"
  137. "identity" "STEAM_1:0:55090276"
  138. "flags" "z"
  139. }
  140.  
  141. "King pt 24/06"
  142. {
  143. "auth" "steam"
  144. "immunity" "5"
  145. "identity" "STEAM_1:0:69967105"
  146. "flags" "z"
  147. }
  148.  
  149. "Khurik pt 27/06"
  150. {
  151. "auth" "steam"
  152. "immunity" "5"
  153. "identity" "STEAM_1:1:89355875"
  154. "flags" "z"
  155. }
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement