Advertisement
Guest User

csdm

a guest
May 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 KB | None | 0 0
  1. ;CSDM Configuration File
  2. ; Default settings by BAILOPAN
  3.  
  4. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  5. ;You must be running the Main plugin for this section
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7. [settings]
  8.  
  9. ;Sets whether CSDM is enabled or not.
  10. enabled = 1
  11.  
  12. ;Sets whether or not players should be stripped of weapons on round start
  13. ; (excludes knife)
  14. strip_weapons = 1
  15.  
  16. ;Sets how long weapons should stay on the ground for after being dropped
  17. ;in seconds. note that enabling this can create lots of lag for clients
  18. ; AND server. 0 is immediate, -1 is infinite.
  19. weapons_stay = 0
  20.  
  21. ;Sets the spawn mode.
  22. ; "none" - users spawn at normal map spawn points
  23. ; "preset" - csdm_spawn_preset.amxx required, uses predefined spawns in config files
  24. ; -- others may be supplied by 3rd party plugins
  25. spawnmode = preset
  26.  
  27. ;Sets whether the bomb is removed
  28. remove_bomb = 1
  29.  
  30. ;Sets the spawn waiting time
  31. spawn_wait_time = 0.75
  32.  
  33. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  34. ;You must be running the FFA plugin for this section
  35. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  36. [ffa]
  37. ;Set whether free for all mode is enabled by default
  38. enabled = 0
  39.  
  40. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  41. ;You must be running the Misc plugin for this section
  42. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  43. [misc]
  44. ;Map objectives are removed by their flags.
  45. ; a - as_ maps
  46. ; b - buyzones are removed
  47. ; c - cs_ maps
  48. ; d - de_ maps
  49. remove_objectives = abcd
  50.  
  51. ;Blocks people from using all buy commands
  52. block_buy = 1
  53.  
  54. ;Auto-refills ammo when it gets depleted
  55. ammo_refill = 1
  56.  
  57. ;Says a radio command to a player when they respawn
  58. spawn_radio_msg = 0
  59.  
  60.  
  61. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  62. ;You must be running the ticketing plugin for this section
  63. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  64. [ticketing]
  65.  
  66. ;Is round ticketing enabled?
  67. enabled = 0
  68.  
  69. ;Number of times a team can have players respawn before they stop
  70. ; being able to respawn
  71. tickets = 150
  72.  
  73.  
  74. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  75. ;You must be running the protection plugin for this section
  76. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  77. [protection]
  78.  
  79. ;Is spawn protection enabled?
  80. enabled = 1
  81.  
  82. ;Colors of glow shell, leave this in quotes
  83. ;The digits are R, G, B, A where A is the alpha transparency
  84. ; (as A gets higher, the glow shell is thicker)
  85. colors = "150 205 0 50"
  86.  
  87. ;Number of seconds someone is respawned for.
  88. time = 2
  89.  
  90.  
  91. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  92. ;You must be running the equip plugin for these sections
  93. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  94. [equip]
  95.  
  96. ;Equip Menu flags:
  97. ; p - primary
  98. ; s - secondary
  99. ; a - armor
  100. ; g - grenade
  101. ; b - buy
  102. menus = psa
  103.  
  104. ;Autoitem flags:
  105. ; a - armor
  106. ; h - helmet
  107. ; g - grenades
  108. ; d - defusekit (CTs only!)
  109. ; n - nightvision
  110. autoitems = ah
  111.  
  112. ;Grenade flags:
  113. ; f - flashbang
  114. ; h - he grenade
  115. ; s - smoke grenade
  116. grenades = h
  117.  
  118. ;Sets number of flashbangs given if
  119. ; grenades are enabled
  120. fnadesnum = 1
  121.  
  122.  
  123. ;;;;;;;;;;;;;;;;
  124. ;;WEAPON MENUS;;
  125. ;;;;;;;;;;;;;;;;
  126.  
  127. ;Format for weapon menus is:
  128. ;shortname "Display Name" menupage
  129. ;Change the '1' to a '0' to block the weapon
  130. ;Removing or moving things
  131. ; from the list will change the order of the menus!
  132.  
  133. [secondary]
  134. usp USP 1
  135. glock18 Glock 1
  136. deagle Deagle 1
  137. p228 P228 1
  138. elite Elite 1
  139. fiveseven "Five Seven" 1
  140.  
  141. [primary]
  142. m4a1 M4A1 1
  143. ak47 AK47 1
  144. aug AUG 1
  145. sg552 SG552 1
  146. galil Galil 1
  147. famas Famas 1
  148. scout Scout 1
  149. awp AWP 1
  150. sg550 SG550 1
  151. m249 M249 1
  152. g3sg1 G3SG1 1
  153. ump45 "UMP 45" 1
  154. mp5navy "MP5 Navy" 1
  155. m3 M3 1
  156. xm1014 XM1014 1
  157. tmp TMP 1
  158. mac10 "Mac 10" 1
  159. p90 P90 1
  160.  
  161. ;List weapons here the bots can randomly have
  162. ;The short name must match one in the list above
  163. [botsecondary]
  164. deagle
  165. usp
  166.  
  167. [botprimary]
  168. ak47
  169. m4a1
  170. awp
  171. galil
  172. aug
  173.  
  174. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  175. ;You must be running the item mode plugin for this section
  176. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  177. [items]
  178.  
  179. ;Is item mode enabled?
  180. enabled = 1
  181.  
  182. ;If set to 1, players will drop a pack of goodies when they die.
  183. drop_packs = 1
  184.  
  185. ;Sets the number of armor given by a battery. Default is 15.
  186. battery = 15
  187.  
  188. ;Sets the number of health given by a medkit. Default is 15.
  189. medkit = 15
  190.  
  191. ;Sets the time to wait for an item to reappear on its place. Default is 20 (0 = permanent)
  192. item_time = 20
  193.  
  194. ;Sets how long packs stay on the ground. (Max is 30 seconds)
  195. drop_time = 20
  196.  
  197. ;Remove semicolons to restrict any of the following items
  198. ; or add the short weapon names of the weapons you want to restrict (m4a1, ak47, awp ...)
  199. [item_restrictions]
  200. ;longjump
  201. ;medkit
  202. ;battery
  203. ;pistolammo
  204. ;rifleammo
  205. ;shotammo
  206. ;smgammo
  207. ;awpammo
  208. ;paraammo
  209. ;fullammo
  210. ;armor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement