Guest User

Untitled

a guest
Jul 27th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.25 KB | None | 0 0
  1. // SourceMod Configuration File
  2. // This file is automatically executed by SourceMod every mapchange.
  3.  
  4.  
  5. // Specifies how admin activity should be relayed to users. Add up the values
  6. // below to get the functionality you want.
  7. // 1: Show admin activity to non-admins anonymously.
  8. // 2: If 1 is specified, admin names will be shown.
  9. // 4: Show admin activity to admins anonymously.
  10. // 8: If 4 is specified, admin names will be shown.
  11. // 16: Always show admin names to root users.
  12. // --
  13. // Default: 13 (1+4+8)
  14. sm_show_activity 13
  15.  
  16. // Specifies whether menu sounds are enabled for menus created by SourceMod.
  17. // Menu sounds can be further configured in addons/sourcemod/configs/core.cfg.
  18. // --
  19. // Default: 1
  20. sm_menu_sounds 1
  21.  
  22. // Specifies how long of a delay, in seconds, should be used in between votes
  23. // that are "public" or can be spammed. Whether or not this delay is obeyed
  24. // is dependent on the menu/command.
  25. // --
  26. // Default: 30
  27. sm_vote_delay 30
  28.  
  29. // Default datetime formatting rules when displaying to clients.
  30. // For full options, see: http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html
  31. // --
  32. // Default: %m/%d/%Y - %H:%M:%S
  33. // 12 hour format: %m/%d/%Y - %I:%M:%S %p
  34. sm_datetime_format "%m/%d/%Y - %H:%M:%S"
  35.  
  36. // Sets how SourceMod should check immunity levels when administrators target
  37. // each other.
  38. // 0: Ignore immunity levels (except for specific group immunities).
  39. // 1: Protect from admins of lower access only.
  40. // 2: Protect from admins of equal to or lower access.
  41. // 3: Same as 2, except admins with no immunity can affect each other.
  42. // --
  43. // Default: 1
  44. sm_immunity_mode 1
  45.  
  46. // Sets how many seconds SourceMod should adjust time values for incorrect
  47. // server clocks. This can be positive or negative and will affect every
  48. // system time in SourceMod, including logging stamps.
  49. // --
  50. // Default: 0
  51. sm_time_adjustment 0
  52.  
  53. // Specifies the amount of time that is allowed between chat messages. This
  54. // includes the say and say_team commands. If a client sends a message faster
  55. // than this time, they receive a flood token. When the client has accumulated
  56. // 3 or more tokens, a warning message is shown instead of the chat message.
  57. // --
  58. // Requires: antiflood.smx
  59. // Default: 0.75
  60. sm_flood_time 0.75
  61.  
  62. // Specifies how the reserved slots plugin operates. Valid values are:
  63. // 0 : Public slots are used in preference to reserved slots. Reserved slots are freed before public slots.
  64. // 1 : If someone with reserve access joins into a reserved slot, the player with the highest latency and
  65. // no reserved slot access (spectator players are selected first) is kicked to make room. Thus, the reserved
  66. // slots always remains free. The only situation where the reserved slot(s) can become properly occupied is
  67. // if the server is full with reserve slot access clients.
  68. // 2 : The same as sm_reserve_type 1 except once a certain number of admins have been reached, the reserve slot
  69. // stops kicking people and anyone can join to fill the server. You can use this to simulate having a large
  70. // number of reserved slots with sm_reserve_type 0 but with only need to have 1 slot unavailable when there are
  71. // less admins connected.
  72. // --
  73. // Requires: reservedslots.smx
  74. // Default: 0
  75. sm_reserve_type 0
  76.  
  77. // Specifies the number of reserved player slots. Users with the reservation
  78. // admin flag set will be able to join the server when there are no public slots
  79. // remaining. If someone does not have this flag, they will be kicked.
  80. // (Public slots are defined as: maxplayers - number of reserved slots)
  81. // --
  82. // Requires: reservedslots.smx
  83. // Default: 0
  84. sm_reserved_slots 0
  85.  
  86. // Specifies whether or not reserved slots will be hidden (subtracted from max
  87. // slot count). Valid values are 0 (Visible) or 1 (Hidden).
  88. // --
  89. // Requires: reservedslots.smx
  90. // Default: 0
  91. sm_hide_slots 0
  92.  
  93. // Specifies whether or not non-admins can send messages to admins using
  94. // say_team @<message>. Valid values are 0 (Disabled) or 1 (Enabled)
  95. // --
  96. // Requires: basechat.smx
  97. // Default: 1
  98. sm_chat_mode 1
  99.  
  100. // Specifies whether or not "timeleft" will automatically be triggered every
  101. // x seconds. Valid values are 0 (Disabled) to 1800 seconds.
  102. // --
  103. // Requires: basetriggers.smx
  104. // Default: 0
  105. sm_timeleft_interval 0
  106.  
  107. // Specifies whether or not chat triggers are broadcast to the server or just
  108. // the player who requested the info trigger. Valid values are 0 (Disabled) or
  109. // 1 (Enabled)
  110. // --
  111. // Requires: basetriggers.smx
  112. // Default: 0
  113. sm_trigger_show 0
  114.  
  115. // Specifies whether or not to display vote progress to clients in the
  116. // "hint" box (near the bottom of the screen in most games).
  117. // Valid values are 0 (Disabled) or 1 (Enabled).
  118. // --
  119. // Default: 0
  120. sm_vote_progress_hintbox 0
  121.  
  122. // Specifies whether or not to display vote progress to clients in the
  123. // chat area. Valid values are 0 (Disabled) or 1 (Enabled).
  124. // --
  125. // Default: 0
  126. sm_vote_progress_chat 0
  127.  
  128. // Specifies whether or not to display vote progress in the server console.
  129. // Valid values are 0 (Disabled) or 1 (Enabled).
  130. // --
  131. // Default: 0
  132. sm_vote_progress_console 0
  133.  
  134. // Specifies whether or not to display vote progress to clients in the
  135. // client console. Valid values are 0 (Disabled) or 1 (Enabled).
  136. // --
  137. // Default: 0
  138. sm_vote_progress_client_console 0
Add Comment
Please, Sign In to add comment