MegastoRM

Untitled

Sep 9th, 2014
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.87 KB | None | 0 0
  1. "Deathmatch Config"
  2. {
  3. "Texts"
  4. {
  5. "Advertise Gun Menu"
  6. {
  7. // Languages uses sourcemod names
  8. // For Chat following color are supported
  9. // {NORMAL}, {DARK_RED}, {PINK}, {DARK_GREEN}, {YELLOW}, {LIGHT_GREEN},
  10. // {LIGHT_RED}, {GRAY}, {ORANGE}, {LIGHT_BLUE}, {DARK_BLUE}, {PURPLE}
  11. //
  12. // For new line use {CARRIAGE_RETURN} (do not work in chat!)
  13. //
  14. // For Hints HTML tag work!
  15. // "<font size='12' color='#e5da25'>Blah</font>"
  16. "en" "{LIGHT_BLUE}Type {DARK_RED}guns{LIGHT_BLUE} to open gun menu"
  17. "fr" "{LIGHT_BLUE}Dis {DARK_RED}guns {LIGHT_BLUE}pour acheter des armes"
  18. "de" "{LIGHT_BLUE}Tippe {DARK_RED}guns{LIGHT_BLUE} um das Waffen Menu zu öffnen"
  19. }
  20.  
  21. "Welcome message"
  22. {
  23. "en" "Welcome to <font size='22' color='#FF0000'> IME SERVERA</font>."
  24. }
  25.  
  26. "Warmup Weapons"
  27. {
  28. "en" "Don't worry! Those fun weapons are only for warmup"
  29. }
  30.  
  31. "Only Headshot"
  32. {
  33. "en" " {CARRIAGE_RETURN}<font color='#AA0000'>Only Headshot is </font><font color='#009900'>ACTIVE</font>"
  34. }
  35. }
  36.  
  37. "Messages"
  38. {
  39. "Advertise Gun Menu"
  40. {
  41. // Where will the message be displayed
  42. // --
  43. // Allowed values: "Chat", "Hint", "Alert"
  44. "DisplayTarget" "Chat"
  45.  
  46. // Event for message display
  47. // --
  48. // Allowed values "Spawn", "Timer"
  49. "DisplayEvent" "Spawn"
  50.  
  51. // (Optional) Repeat occurence
  52. // --
  53. // "Single" => repeat disabled (Deafault)
  54. // "Infinite" => repeat indefinitly
  55. // "<value>" => repeat count
  56. "Repeat" "Single"
  57.  
  58. // (Optional) Repeat period, in seconds
  59. // --
  60. // This in mandatory if "Repeat" is not "Single"
  61. // Minimum value is 0
  62. "Period" "1" // No use here as Repeat is set to single
  63.  
  64. // (Optional) Gives a priority
  65. // --
  66. // If two messages are to be drawn on same display at the same time,
  67. // highest priority will be displayed first
  68. // Note that Hint and Alert are considered as same display
  69. // Default 50
  70. "Priority" "100"
  71.  
  72. // (Optional) Display duration
  73. // --
  74. // Will postpone the display of other messages during specified duration
  75. // This will also trigger a re-display every seconds on Hint and Alert to keep the message active
  76. // Duration must be strictly low than period if repeat is not Single!
  77. // Default 0
  78. "Duration" "0"
  79.  
  80. // (Optional) No Re-display time
  81. // --
  82. // Will block message from being displayed if previous identical message has been displayed since
  83. // less than that duration
  84. // Usefull to not spam messages with DisplayEvent set to Spawn on Chat target
  85. // Default 0
  86. "NoReDisplayTime" "20"
  87.  
  88. // Text to be loaded
  89. // If more than one text is supplied, displayed text will iterate though given list at each display
  90. "Text"
  91. {
  92. "Texts" "Advertise Gun Menu"
  93. }
  94. }
  95.  
  96. "Welcome"
  97. {
  98. "DisplayTarget" "Hint"
  99. "DisplayEvent" "Spawn"
  100. "Repeat" "Single"
  101. "Priority" "100"
  102. "Duration" "3"
  103. "Text"
  104. {
  105. "Texts" "Welcome message"
  106. }
  107. }
  108.  
  109. "Only Headshot"
  110. {
  111. "DisplayTarget" "Hint"
  112. "DisplayEvent" "Spawn"
  113. "Repeat" "Single"
  114. "Priority" "80"
  115. "Duration" "1"
  116. "Text"
  117. {
  118. "Texts" "Only Headshot"
  119. }
  120. }
  121.  
  122. "Warmup Weapons"
  123. {
  124. "DisplayTarget" "Alert"
  125. "DisplayEvent" "Timer"
  126. "Repeat" "Infinite"
  127. "Priority" "50"
  128. "Period" "30"
  129. "Duration" "5"
  130. "Text"
  131. {
  132. "Texts" "Warmup Weapons"
  133. }
  134. }
  135.  
  136. }
  137.  
  138. "Configs"
  139. {
  140. "Options Default"
  141. {
  142. "Cvars"
  143. {
  144. // Remove objectives (disables bomb sites, and removes c4 and hostages).
  145. "dm_remove_objectives" "1"
  146.  
  147. // Gun menu mode.
  148. // 1) Enabled.
  149. // 2) Disabled.
  150. // 3) Random weapons every round
  151. "dm_gun_menu_mode" "1"
  152.  
  153. // Enable random item in gun menu
  154. "dm_enable_random_menu" "0"
  155.  
  156. // Remove spawning chickens.
  157. "dm_remove_chickens" "1"
  158.  
  159. // Hide radar.
  160. "dm_hide_radar" "1"
  161.  
  162. // 3rd party & weapon drop
  163. "dm_weapons_allow_3rd_party" "0"
  164. "dm_weapons_allow_drop" "0"
  165. "dm_weapons_allow_drop_nade" "0"
  166. "dm_weapons_allow_drop_knife" "0"
  167. "dm_weapons_allow_drop_zeus" "0"
  168. "dm_weapons_allow_drop_c4" "1"
  169.  
  170. "dm_weapons_allow_not_carried" "0"
  171. "dm_weapons_max_not_carried" "100"
  172. "dm_weapons_max_same_not_carried" "20"
  173. "dm_weapons_remove_furthest" "1"
  174. "dm_weapons_remove_not_in_los" "1"
  175. "dm_weapons_remove_sametype_first" "1"
  176.  
  177. // Unlimited player ammo.
  178. "dm_replenish_ammo" "1"
  179. "dm_replenish_clip" "0"
  180. // Set replenish below if you don't want replenish on every kill
  181. "dm_replenish_clip_headshot" "0"
  182. "dm_replenish_clip_knife" "0"
  183. "dm_replenish_clip_nade" "0"
  184.  
  185. // Fast equip
  186. "dm_fast_equip" "1"
  187.  
  188. // Only HS
  189. "dm_onlyhs" "0"
  190. "dm_onlyhs_allowknife" "1"
  191. "dm_onlyhs_allowtaser" "1"
  192. "dm_onlyhs_allownade" "1"
  193. "dm_onlyhs_allowworld" "1"
  194.  
  195. // HP.
  196. "dm_hp_start" "100"
  197. "dm_hp_max" "100"
  198.  
  199. // Kevlar.
  200. "dm_kevlar_start" "100"
  201. "dm_kevlar_max" "100"
  202.  
  203. // HP per kill.
  204. "dm_hp_kill" "5"
  205. "dm_hp_hs" "15"
  206. "dm_hp_knife" "20"
  207.  
  208. // Convert HP reward into kevlar/Helmet?
  209. "dm_hp_to_kevlar_mode" "2" // Refill kevlar mode: 0 = Off, 1 = always, 2 = when HP is full.
  210. "dm_hp_to_kevlar_ratio" "0.5"
  211. "dm_hp_to_helmet" "3" // Refill helmet mode: 0 = Off, 1 = always, 2 = when HP is full, 3 when HP and kevlar are full.
  212.  
  213. // Display HP messages.
  214. "dm_hp_messages" "1"
  215.  
  216. // Primary default weapon
  217. "dm_default_primary" "none"
  218.  
  219. // Secondary default weapon
  220. "dm_default_secondary" "none"
  221.  
  222. // Hide menu on connect
  223. "dm_connect_hide_menu" "0"
  224.  
  225. // Give helmet?
  226. "dm_helmet" "1"
  227.  
  228. // Give Zeus?
  229. "dm_zeus" "0"
  230.  
  231. // Give knife?
  232. "dm_knife" "1"
  233.  
  234. // Give defuser to CTs
  235. "dm_defuser" "1"
  236.  
  237. // Give nades?
  238. "dm_nades_incendiary" "0"
  239. "dm_nades_decoy" "0"
  240. "dm_nades_flashbang" "0"
  241. // -1 refill he on explode
  242. "dm_nades_he" "1"
  243. "dm_nades_smoke" "0"
  244.  
  245. // Max equipment?
  246. "dm_nades_incendiary_max" "0"
  247. "dm_nades_decoy_max" "0"
  248. "dm_nades_flashbang_max" "0"
  249. "dm_nades_he_max" "1"
  250. "dm_nades_smoke_max" "0"
  251. "dm_zeus_max" "0"
  252.  
  253. // Equipment reward Format <number>*<equimpment>. Equimpent can be he, flash, smoke, incendiary, decoy, zeus. eg "1*he,2*zeus"
  254. "dm_equip_kill" ""
  255. "dm_equip_headshot" ""
  256. "dm_equip_knife" ""
  257. "dm_equip_nade" ""
  258.  
  259. // Weapons rotation
  260. "dm_limited_weapons_rotation" "1"
  261. "dm_limited_weapons_rotation_time" "60.0"
  262. "dm_limited_weapons_rotation_min_time" "10.0"
  263.  
  264. // Spawn system (requires DHooks
  265. "dm_randomspawn_internal" "1"
  266. "dm_normalspawn_internal" "1"
  267. // Use LOS for non random spawn
  268. "dm_normalspawn_los" "0"
  269. // Median spawn distance ratio between enemies an teammates
  270. "dm_spawn_median_distance_ratio" "0.17"
  271. "dm_spawn_min_team_distance_ratio" "0.17"
  272.  
  273. // Spawn sounds
  274. "dm_spawn_custom_sounds_enable" "0"
  275. "dm_spawn_custom_sounds" ""
  276. "dm_spawn_custom_sounds_level" "90"
  277. "dm_spawn_custom_sounds_to_self_enable" "0"
  278. "dm_spawn_custom_sounds_to_self" ""
  279. "dm_spawn_custom_sounds_to_self_level" "90"
  280. "dm_spawn_custom_sounds_to_team_enable" "0"
  281. "dm_spawn_custom_sounds_to_team" ""
  282. "dm_spawn_custom_sounds_to_team_level" "90"
  283.  
  284. // Spawn fade
  285. "dm_spawn_fade_enable" "0"
  286. "dm_spawn_fade_color" "0,0,0,240" // R, G, B, A
  287. "dm_spawn_fade_hold_duration" "0"
  288. "dm_spawn_fade_duration" "1.5"
  289.  
  290. // Warmup time?
  291. "dm_warmup_time" "30"
  292.  
  293. ///////////////////////////////////
  294. // CS:GO Con vars for deathmatch
  295. // Disable buy
  296. "mp_buytime" "0"
  297. "mp_buy_during_immunity" "0"
  298.  
  299. // No cash
  300. "mp_startmoney" "0"
  301. "mp_playercashawards" "0"
  302. "mp_teamcashawards" "0"
  303.  
  304. // Spawn
  305. "mp_respawn_immunitytime" "2"
  306. "mp_freezetime" "0"
  307. "mp_forcecamera" "0"
  308. "spec_freeze_time" "0"
  309. "mp_deathcam_skippable" "1"
  310. "mp_randomspawn" "0"
  311. "mp_randomspawn_los" "0"
  312. "mp_respawn_on_death_t" "1"
  313. "mp_respawn_on_death_ct" "1"
  314.  
  315. // Disable weapon/stuff on map
  316. "mp_weapons_allow_map_placed" "0"
  317. "mp_death_drop_defuser" "0"
  318. "mp_death_drop_grenade" "0"
  319. "mp_death_drop_gun" "0"
  320. "mp_defuser_allocation" "0"
  321. "mp_give_player_c4" "0"
  322. "sv_infinite_ammo" "0"
  323. "mp_ct_default_grenades" ""
  324. "mp_ct_default_primary" ""
  325. "mp_ct_default_secondary" ""
  326. "mp_t_default_grenades" ""
  327. "mp_t_default_primary" ""
  328. "mp_t_default_secondary" ""
  329.  
  330.  
  331. // Friendly fire stuff
  332. "mp_friendlyfire" "0"
  333. "mp_solid_teammates" "0"
  334. "mp_teammates_are_enemies" "0"
  335.  
  336. // No winner!
  337. "mp_default_team_winner_no_objective" "-1"
  338.  
  339. // Disable bonus (in deathmatch gamemode)
  340. "mp_dm_time_between_bonus_min" "9000"
  341. "mp_dm_time_between_bonus_max" "9001"
  342.  
  343. // Avoid radio spam
  344. "sv_ignoregrenaderadio" "1"
  345. }
  346.  
  347. "LoadMessage"
  348. {
  349. "Messages" "Welcome"
  350. "Messages" "Advertise Gun Menu"
  351. }
  352. }
  353.  
  354. "Show Menu"
  355. {
  356. "SectionOptions"
  357. {
  358. "AdminMenuName" "Weapons Menu/Show Weapons Menu"
  359. "PlayerDisplay" ""
  360. "LoadAsAMod" ""
  361. }
  362.  
  363. "Cvars"
  364. {
  365. "dm_gun_menu_mode" "1"
  366. "dm_connect_hide_menu" "0"
  367. }
  368.  
  369. "LoadMessage"
  370. {
  371. "Messages" "Advertise Gun Menu"
  372. }
  373. }
  374.  
  375. "No Menu"
  376. {
  377. "SectionOptions"
  378. {
  379. "AdminMenuName" "Weapons Menu/No Weapons Menu"
  380. "PlayerDisplay" ""
  381. "LoadAsAMod" ""
  382. }
  383.  
  384. "Cvars"
  385. {
  386. "dm_gun_menu_mode" "2"
  387. "dm_connect_hide_menu" "1"
  388. }
  389.  
  390. "UnloadMessage"
  391. {
  392. "Messages" "Advertise Gun Menu"
  393. }
  394. }
  395.  
  396. "Hidden Menu"
  397. {
  398. "SectionOptions"
  399. {
  400. "AdminMenuName" "Weapons Menu/Hide Weapons Menu"
  401. "PlayerDisplay" ""
  402. "LoadAsAMod" ""
  403. }
  404.  
  405. "Cvars"
  406. {
  407. "dm_gun_menu_mode" "1"
  408. "dm_connect_hide_menu" "1"
  409. }
  410.  
  411. "LoadMessage"
  412. {
  413. "Messages" "Advertise Gun Menu"
  414. }
  415. }
  416.  
  417. "Random weapons"
  418. {
  419. "SectionOptions"
  420. {
  421. "AdminMenuName" "Weapons Menu/Random Weapons"
  422. "PlayerDisplay" "Random Weapons"
  423. "LoadAsAMod" ""
  424. }
  425.  
  426. "Cvars"
  427. {
  428. "dm_gun_menu_mode" "3"
  429. "dm_connect_hide_menu" "1"
  430. "dm_default_primary" "random"
  431. "dm_default_secondary" "random"
  432. }
  433.  
  434. "UnloadMessage"
  435. {
  436. "Messages" "Advertise Gun Menu"
  437. }
  438. }
  439.  
  440. "No Armour"
  441. {
  442. "SectionOptions"
  443. {
  444. "AdminMenuName" "Equipment/No Armor"
  445. "PlayerDisplay" "No Armor"
  446. "LoadAsAMod" "KeepClientSettings"
  447. }
  448.  
  449. "Cvars"
  450. {
  451. "dm_kevlar_start" "0"
  452. "dm_kevlar_max" "0"
  453. "dm_helmet" "0"
  454. "dm_hp_to_helmet" "0"
  455. }
  456. }
  457.  
  458. "No Helmet"
  459. {
  460. "SectionOptions"
  461. {
  462. "AdminMenuName" "Equipment/No Helmet"
  463. "PlayerDisplay" "No Helmet"
  464. "LoadAsAMod" "KeepClientSettings"
  465. }
  466.  
  467. "Cvars"
  468. {
  469. "dm_kevlar_start" "100"
  470. "dm_kevlar_max" "100"
  471. "dm_helmet" "0"
  472. "dm_hp_to_helmet" "0"
  473. }
  474. }
  475.  
  476. "No Nades"
  477. {
  478. "SectionOptions"
  479. {
  480. "AdminMenuName" "Weapons/Nades/No Nades"
  481. "PlayerDisplay" "No Nades"
  482. "LoadAsAMod" "KeepClientSettings"
  483. }
  484.  
  485. "Cvars"
  486. {
  487. "dm_nades_incendiary" "0"
  488. "dm_nades_decoy" "0"
  489. "dm_nades_flashbang" "0"
  490. "dm_nades_he" "0"
  491. "dm_nades_smoke" "0"
  492. }
  493. }
  494.  
  495. "HE Nades"
  496. {
  497. "SectionOptions"
  498. {
  499. "AdminMenuName" "Weapons/Nades/HE Nades"
  500. "PlayerDisplay" "Give HE nade"
  501. "LoadAsAMod" "KeepClientSettings"
  502. }
  503.  
  504. "Cvars"
  505. {
  506. "dm_nades_he" "1"
  507. }
  508. }
  509.  
  510. "Infinite HE"
  511. {
  512. "SectionOptions"
  513. {
  514. "AdminMenuName" "Weapons/Nades/Infinite HE"
  515. "PlayerDisplay" "Infinite HE nade"
  516. "LoadAsAMod" "KeepClientSettings"
  517. }
  518.  
  519. "Cvars"
  520. {
  521. "dm_nades_he" "-1"
  522. }
  523. }
  524.  
  525. "knife"
  526. {
  527. "SectionOptions"
  528. {
  529. "AdminMenuName" "Weapons/Knife/Knife"
  530. "PlayerDisplay" "Give Knife"
  531. "LoadAsAMod" "KeepClientSettings"
  532. }
  533.  
  534. "Cvars"
  535. {
  536. "dm_knife" "1"
  537. }
  538. }
  539.  
  540. "No knife"
  541. {
  542. "SectionOptions"
  543. {
  544. "AdminMenuName" "Weapons/Knife/No knife"
  545. "PlayerDisplay" "No knife"
  546. "LoadAsAMod" "KeepClientSettings"
  547. }
  548.  
  549. "Cvars"
  550. {
  551. "dm_knife" "0"
  552. }
  553. }
  554.  
  555. "All Guns"
  556. {
  557. "SectionOptions"
  558. {
  559. "AdminMenuName" "Weapons/All Guns"
  560. "PlayerDisplay" "All Guns"
  561. "LoadAsAMod" ""
  562. }
  563.  
  564. "Primary"
  565. {
  566. "weapon_ak47" "-1"
  567. "weapon_m4a1" "-1"
  568. "weapon_m4a1_silencer" "-1"
  569. "weapon_sg556" "-1"
  570. "weapon_aug" "-1"
  571. "weapon_galilar" "-1"
  572. "weapon_famas" "-1"
  573. "weapon_awp" "-1"
  574. "weapon_ssg08" "-1"
  575. "weapon_g3sg1" "-1"
  576. "weapon_scar20" "-1"
  577. "weapon_m249" "-1"
  578. "weapon_negev" "-1"
  579. "weapon_nova" "-1"
  580. "weapon_xm1014" "-1"
  581. "weapon_sawedoff" "-1"
  582. "weapon_mag7" "-1"
  583. "weapon_mac10" "-1"
  584. "weapon_mp9" "-1"
  585. "weapon_mp7" "-1"
  586. "weapon_ump45" "-1"
  587. "weapon_p90" "-1"
  588. "weapon_bizon" "-1"
  589. }
  590.  
  591. "Secondary"
  592. {
  593. "weapon_glock" "-1"
  594. "weapon_p250" "-1"
  595. "weapon_cz75a" "-1"
  596. "weapon_usp_silencer" "-1"
  597. "weapon_fiveseven" "-1"
  598. "weapon_deagle" "-1"
  599. "weapon_elite" "-1"
  600. "weapon_tec9" "-1"
  601. "weapon_hkp2000" "-1"
  602. }
  603. }
  604.  
  605. "Primary disabled"
  606. {
  607. "SectionOptions"
  608. {
  609. "AdminMenuName" "Weapons/Primary/Disabled"
  610. "PlayerDisplay" "No Primary"
  611. "LoadAsAMod" ""
  612. }
  613.  
  614. "Primary"
  615. {
  616. }
  617.  
  618. "Cvars"
  619. {
  620. "dm_default_primary" "none"
  621. }
  622. }
  623.  
  624. "Primary Aim"
  625. {
  626. "SectionOptions"
  627. {
  628. "AdminMenuName" "Weapons/Primary/Aim"
  629. "PlayerDisplay" "AIM Guns"
  630. "LoadAsAMod" ""
  631. }
  632.  
  633. "Primary"
  634. {
  635. // Weapon. // Limit.
  636. "weapon_ak47" "-1"
  637. "weapon_m4a1" "-1"
  638. "weapon_m4a1_silencer" "-1"
  639. "weapon_awp" "-1"
  640. "weapon_sg556" "-1"
  641. "weapon_aug" "-1"
  642. "weapon_galilar" "-1"
  643. "weapon_famas" "-1"
  644. "weapon_ssg08" "-1"
  645. }
  646. }
  647.  
  648. "Primary Smgs"
  649. {
  650. "SectionOptions"
  651. {
  652. "AdminMenuName" "Weapons/Primary/SMGs"
  653. "PlayerDisplay" "SubMachine Guns"
  654. "LoadAsAMod" ""
  655. }
  656.  
  657. "Primary"
  658. {
  659. "weapon_mac10" "-1"
  660. "weapon_mp9" "-1"
  661. "weapon_mp7" "-1"
  662. "weapon_ump45" "-1"
  663. "weapon_p90" "-1"
  664. "weapon_bizon" "-1"
  665. }
  666. }
  667.  
  668. "Primary autoSnipes"
  669. {
  670. "SectionOptions"
  671. {
  672. "AdminMenuName" "Weapons/Primary/Auto Snipes"
  673. "PlayerDisplay" "Auto Snipes"
  674. "LoadAsAMod" ""
  675. }
  676.  
  677. "Primary"
  678. {
  679. "weapon_g3sg1" "-1"
  680. "weapon_scar20" "-1"
  681. }
  682. }
  683.  
  684. "Primary Shotguns"
  685. {
  686. "SectionOptions"
  687. {
  688. "AdminMenuName" "Weapons/Primary/ShotGuns"
  689. "PlayerDisplay" "ShotGuns"
  690. "LoadAsAMod" ""
  691. }
  692.  
  693. "Primary"
  694. {
  695. "weapon_nova" "-1"
  696. "weapon_xm1014" "-1"
  697. "weapon_sawedoff" "-1"
  698. "weapon_mag7" "-1"
  699. }
  700. }
  701.  
  702. "Primary AK and M4"
  703. {
  704. "SectionOptions"
  705. {
  706. "AdminMenuName" "Weapons/Primary/AK-Colt"
  707. "PlayerDisplay" "AK-Colt"
  708. "LoadAsAMod" ""
  709. }
  710.  
  711. "Primary"
  712. {
  713. // Weapon. // Limit.
  714. "weapon_ak47" "-1"
  715. "weapon_m4a1" "-1"
  716. "weapon_m4a1_silencer" "-1"
  717. }
  718. }
  719.  
  720. "Primary Famas Galil"
  721. {
  722. "SectionOptions"
  723. {
  724. "AdminMenuName" "Weapons/Primary/Famas Galil"
  725. "PlayerDisplay" "Famas Galil"
  726. "LoadAsAMod" ""
  727. }
  728.  
  729. "Primary"
  730. {
  731. // Weapon. // Limit.
  732. "weapon_galilar" "-1"
  733. "weapon_famas" "-1"
  734. }
  735. }
  736.  
  737. "Primary Snipers"
  738. {
  739. "SectionOptions"
  740. {
  741. "AdminMenuName" "Weapons/Primary/Snipers"
  742. "PlayerDisplay" "Snipers"
  743. "LoadAsAMod" ""
  744. }
  745.  
  746. "Primary"
  747. {
  748. "weapon_awp" "-1"
  749. "weapon_ssg08" "-1"
  750. }
  751. }
  752.  
  753. "Secondary disabled"
  754. {
  755. "SectionOptions"
  756. {
  757. "AdminMenuName" "Weapons/Secondary/Disabled"
  758. "PlayerDisplay" "No Pistols"
  759. "LoadAsAMod" ""
  760. }
  761.  
  762. "Secondary"
  763. {
  764. }
  765.  
  766. "Cvars"
  767. {
  768. "dm_default_secondary" "none"
  769. }
  770. }
  771.  
  772. "Secondary Aim"
  773. {
  774. "SectionOptions"
  775. {
  776. "AdminMenuName" "Weapons/Secondary/Aim"
  777. "PlayerDisplay" "All Pistols"
  778. "LoadAsAMod" ""
  779. }
  780.  
  781. "Secondary"
  782. {
  783. // Weapon. // Limit.
  784. "weapon_glock" "-1"
  785. "weapon_p250" "-1"
  786. "weapon_cz75a" "-1"
  787. "weapon_usp_silencer" "-1"
  788. "weapon_fiveseven" "-1"
  789. "weapon_deagle" "-1"
  790. "weapon_elite" "-1"
  791. "weapon_tec9" "-1"
  792. "weapon_hkp2000" "-1"
  793. }
  794. }
  795.  
  796. "Secondary No TEC9, No Elite"
  797. {
  798. "SectionOptions"
  799. {
  800. "AdminMenuName" "Weapons/Secondary/No TEC9, No Elite"
  801. "PlayerDisplay" "Pistols"
  802. "LoadAsAMod" ""
  803. }
  804.  
  805. "Secondary"
  806. {
  807. // Weapon. // Limit.
  808. "weapon_glock" "-1"
  809. "weapon_p250" "-1"
  810. "weapon_usp_silencer" "-1"
  811. "weapon_fiveseven" "-1"
  812. "weapon_deagle" "-1"
  813. "weapon_hkp2000" "-1"
  814. }
  815. }
  816.  
  817. "Secondary USP, P2000"
  818. {
  819. "SectionOptions"
  820. {
  821. "AdminMenuName" "Weapons/Secondary/USP, P2000"
  822. "PlayerDisplay" "USP, P2000"
  823. "LoadAsAMod" ""
  824. }
  825.  
  826. "Secondary"
  827. {
  828. // Weapon. // Limit.
  829. "weapon_usp_silencer" "-1"
  830. "weapon_hkp2000" "-1"
  831. }
  832. }
  833.  
  834. "Secondary Low power"
  835. {
  836. "SectionOptions"
  837. {
  838. "AdminMenuName" "Weapons/Secondary/Low Power"
  839. "PlayerDisplay" "Small Pistols"
  840. "LoadAsAMod" ""
  841. }
  842.  
  843. "Secondary"
  844. {
  845. // Weapon. // Limit.
  846. "weapon_p250" "-1"
  847. "weapon_usp_silencer" "-1"
  848. "weapon_deagle" "-1"
  849. "weapon_hkp2000" "-1"
  850. }
  851. }
  852.  
  853. "Random Spawn"
  854. {
  855. "SectionOptions"
  856. {
  857. "AdminMenuName" "Game/Random Spawn"
  858. "PlayerDisplay" ""
  859. "LoadAsAMod" "KeepClientSettings"
  860. }
  861.  
  862. "Cvars"
  863. {
  864. "mp_randomspawn" "1"
  865. "mp_randomspawn_los" "1"
  866. }
  867. }
  868.  
  869. "Normal Spawn"
  870. {
  871. "SectionOptions"
  872. {
  873. "AdminMenuName" "Game/Normal Spawn"
  874. "PlayerDisplay" ""
  875. "LoadAsAMod" "KeepClientSettings"
  876. }
  877.  
  878. "Cvars"
  879. {
  880. "mp_randomspawn" "0"
  881. "mp_randomspawn_los" "0"
  882. }
  883. }
  884.  
  885. "Duration 5mn"
  886. {
  887. "Cvars"
  888. {
  889. "mp_roundtime" "-1"
  890. "mp_timelimit" "-1"
  891. }
  892. }
  893.  
  894. "Scout knives low gravity"
  895. {
  896. "SectionOptions"
  897. {
  898. "AdminMenuName" "Game/KZ gravity"
  899. "PlayerDisplay" "KZ gravity"
  900. "LoadAsAMod" "KeepClientSettings"
  901. }
  902.  
  903. "Cvars"
  904. {
  905. "sv_gravity" "300"
  906. "sv_airaccelerate" "500"
  907. }
  908. }
  909.  
  910. "Normal gravity"
  911. {
  912. "SectionOptions"
  913. {
  914. "AdminMenuName" "Game/Normal gravity"
  915. "PlayerDisplay" "Normal Gravity"
  916. "LoadAsAMod" "KeepClientSettings"
  917. }
  918.  
  919. "Cvars"
  920. {
  921. "sv_gravity" "800"
  922. "sv_airaccelerate" "12"
  923. }
  924. }
  925.  
  926. "zeus"
  927. {
  928. "SectionOptions"
  929. {
  930. "AdminMenuName" "Equipment/Taser/Taser"
  931. "PlayerDisplay" "Taser"
  932. "LoadAsAMod" "KeepClientSettings"
  933. }
  934.  
  935. "Cvars"
  936. {
  937. "dm_zeus" "1"
  938. }
  939. }
  940.  
  941. "no zeus"
  942. {
  943. "SectionOptions"
  944. {
  945. "AdminMenuName" "Equipment/Taser/No Taser"
  946. "PlayerDisplay" "No Taser"
  947. "LoadAsAMod" "KeepClientSettings"
  948. }
  949.  
  950. "Cvars"
  951. {
  952. "dm_zeus" "0"
  953. }
  954. }
  955.  
  956. "Only HS Disabled"
  957. {
  958. "SectionOptions"
  959. {
  960. "AdminMenuName" "Game/Only HS/Disabled"
  961. "PlayerDisplay" "Only HeadShot OFF"
  962. "LoadAsAMod" "KeepClientSettings"
  963. }
  964.  
  965. "Cvars"
  966. {
  967. "dm_onlyhs" "0"
  968. }
  969.  
  970. "UnloadMessage"
  971. {
  972. "Messages" "Only Headshot"
  973. }
  974. }
  975.  
  976. "Only HS Enabled"
  977. {
  978. "SectionOptions"
  979. {
  980. "AdminMenuName" "Game/Only HS/Enabled"
  981. "PlayerDisplay" "Only HeadShot"
  982. "LoadAsAMod" "KeepClientSettings"
  983. }
  984.  
  985. "Cvars"
  986. {
  987. "dm_onlyhs" "1"
  988. "dm_onlyhs_allowknife" "0"
  989. "dm_onlyhs_allownade" "0"
  990. "dm_onlyhs_allowworld" "0"
  991. }
  992.  
  993. "LoadMessage"
  994. {
  995. "Messages" "Only Headshot"
  996. }
  997. }
  998.  
  999. "Only HS +knife"
  1000. {
  1001. "SectionOptions"
  1002. {
  1003. "AdminMenuName" "Game/Only HS/Enabled +Knivez"
  1004. "PlayerDisplay" "Only HeadShot and Knivez"
  1005. "LoadAsAMod" "KeepClientSettings"
  1006. }
  1007.  
  1008. "Cvars"
  1009. {
  1010. "dm_onlyhs" "1"
  1011. "dm_onlyhs_allowknife" "1"
  1012. "dm_onlyhs_allownade" "0"
  1013. "dm_onlyhs_allowworld" "0"
  1014. }
  1015.  
  1016. "LoadMessage"
  1017. {
  1018. "Messages" "Only Headshot"
  1019. }
  1020. }
  1021.  
  1022. "Only HS +knife +Nade"
  1023. {
  1024. "SectionOptions"
  1025. {
  1026. "AdminMenuName" "Game/Only HS/Enabled +Knivez+Nade"
  1027. "PlayerDisplay" "Only HeadShot, Knivez and Nades"
  1028. "LoadAsAMod" "KeepClientSettings"
  1029. }
  1030.  
  1031. "Cvars"
  1032. {
  1033. "dm_onlyhs" "1"
  1034. "dm_onlyhs_allowknife" "1"
  1035. "dm_onlyhs_allownade" "1"
  1036. "dm_onlyhs_allowworld" "0"
  1037. }
  1038.  
  1039. "LoadMessage"
  1040. {
  1041. "Messages" "Only Headshot"
  1042. }
  1043. }
  1044.  
  1045. "Only HS +knife +Nade + World"
  1046. {
  1047. "SectionOptions"
  1048. {
  1049. "AdminMenuName" "Game/Only HS/Enabled +Knivez+Nade+World"
  1050. "PlayerDisplay" "Only HeadShot, Knivez and Nades"
  1051. "LoadAsAMod" "KeepClientSettings"
  1052. }
  1053.  
  1054. "Cvars"
  1055. {
  1056. "dm_onlyhs" "1"
  1057. "dm_onlyhs_allowknife" "1"
  1058. "dm_onlyhs_allownade" "1"
  1059. "dm_onlyhs_allowworld" "1"
  1060. }
  1061.  
  1062. "LoadMessage"
  1063. {
  1064. "Messages" "Only Headshot"
  1065. }
  1066. }
  1067. }
  1068.  
  1069. "Game Modes"
  1070. {
  1071. "p250"
  1072. {
  1073. "SectionOptions"
  1074. {
  1075. "AdminMenuName" "Pistols/P250"
  1076. "PlayerDisplay" "P250 Only"
  1077. }
  1078.  
  1079. "Load"
  1080. {
  1081. "Configs" "Options Default"
  1082. "Configs" "No Menu"
  1083. "Configs" "No Helmet"
  1084. "Configs" "No Nades"
  1085. "Configs" "Primary disabled"
  1086. "Configs" "Secondary disabled"
  1087. }
  1088.  
  1089. "Cvars"
  1090. {
  1091. "dm_default_secondary" "weapon_p250"
  1092. }
  1093. }
  1094.  
  1095. "usp"
  1096. {
  1097. "SectionOptions"
  1098. {
  1099. "AdminMenuName" "Pistols/USP"
  1100. "PlayerDisplay" "USP Only"
  1101. }
  1102.  
  1103. "Load"
  1104. {
  1105. "Configs" "Options Default"
  1106. "Configs" "No Menu"
  1107. "Configs" "No Helmet"
  1108. "Configs" "No Nades"
  1109. "Configs" "Primary disabled"
  1110. "Configs" "Secondary disabled"
  1111. }
  1112.  
  1113. "Cvars"
  1114. {
  1115. "dm_default_secondary" "weapon_usp_silencer"
  1116. }
  1117. }
  1118.  
  1119. "p2000"
  1120. {
  1121. "SectionOptions"
  1122. {
  1123. "AdminMenuName" "Pistols/P2000"
  1124. "PlayerDisplay" "P2000 Only"
  1125. }
  1126.  
  1127. "Load"
  1128. {
  1129. "Configs" "Options Default"
  1130. "Configs" "No Menu"
  1131. "Configs" "No Helmet"
  1132. "Configs" "No Nades"
  1133. "Configs" "Primary disabled"
  1134. "Configs" "Secondary disabled"
  1135. }
  1136.  
  1137. "Cvars"
  1138. {
  1139. "dm_default_secondary" "weapon_hkp2000"
  1140. }
  1141. }
  1142.  
  1143. "glock"
  1144. {
  1145. "SectionOptions"
  1146. {
  1147. "AdminMenuName" "Pistols/Glock"
  1148. "PlayerDisplay" "Glock Only"
  1149. }
  1150.  
  1151. "Load"
  1152. {
  1153. "Configs" "Options Default"
  1154. "Configs" "No Menu"
  1155. "Configs" "No Helmet"
  1156. "Configs" "No Nades"
  1157. "Configs" "Primary disabled"
  1158. "Configs" "Secondary disabled"
  1159. }
  1160.  
  1161. "Cvars"
  1162. {
  1163. "dm_default_secondary" "weapon_glock"
  1164. }
  1165. }
  1166.  
  1167. "deagle"
  1168. {
  1169. "SectionOptions"
  1170. {
  1171. "AdminMenuName" "Pistols/Deagle"
  1172. "PlayerDisplay" "Deagle Only"
  1173. }
  1174.  
  1175. "Load"
  1176. {
  1177. "Configs" "Options Default"
  1178. "Configs" "No Menu"
  1179. "Configs" "HE Nades"
  1180. "Configs" "Primary disabled"
  1181. "Configs" "Secondary disabled"
  1182. }
  1183.  
  1184. "Cvars"
  1185. {
  1186. "dm_default_secondary" "weapon_deagle"
  1187. }
  1188. }
  1189.  
  1190. "mag7"
  1191. {
  1192. "SectionOptions"
  1193. {
  1194. "AdminMenuName" "Primary Fun/Mag-7"
  1195. "PlayerDisplay" "Mag-7 Only"
  1196. }
  1197.  
  1198. "Load"
  1199. {
  1200. "Configs" "Options Default"
  1201. "Configs" "No Menu"
  1202. "Configs" "HE Nades"
  1203. "Configs" "Primary disabled"
  1204. "Configs" "Secondary disabled"
  1205. }
  1206.  
  1207. "Cvars"
  1208. {
  1209. "dm_default_primary" "weapon_mag7"
  1210. }
  1211. }
  1212.  
  1213. "Low Power guns"
  1214. {
  1215. "SectionOptions"
  1216. {
  1217. "AdminMenuName" "Pistols/Low Power"
  1218. "PlayerDisplay" "Small Pistols"
  1219. }
  1220.  
  1221. "Load"
  1222. {
  1223. "Configs" "Options Default"
  1224. "Configs" "No Helmet"
  1225. "Configs" "No Nades"
  1226. "Configs" "Primary disabled"
  1227. "Configs" "Secondary Low power"
  1228. }
  1229. }
  1230.  
  1231. "Mid Power guns"
  1232. {
  1233. "SectionOptions"
  1234. {
  1235. "AdminMenuName" "Pistols/Mid Power"
  1236. "PlayerDisplay" "Pistols"
  1237. }
  1238.  
  1239. "Load"
  1240. {
  1241. "Configs" "Options Default"
  1242. "Configs" "No Helmet"
  1243. "Configs" "No Nades"
  1244. "Configs" "Primary disabled"
  1245. "Configs" "Secondary No TEC9, No Elite"
  1246. }
  1247. }
  1248.  
  1249. "Pistols"
  1250. {
  1251. "SectionOptions"
  1252. {
  1253. "AdminMenuName" "Pistols/Pistols"
  1254. "PlayerDisplay" "All Pistols"
  1255. }
  1256.  
  1257. "Load"
  1258. {
  1259. "Configs" "Options Default"
  1260. "Configs" "No Helmet"
  1261. "Configs" "No Nades"
  1262. "Configs" "Primary disabled"
  1263. "Configs" "Secondary Aim"
  1264. }
  1265.  
  1266. "LoadWarmup"
  1267. {
  1268. "Configs" "No Menu"
  1269. }
  1270.  
  1271. "Cvars"
  1272. {
  1273. "dm_default_primary" "none"
  1274. "dm_default_secondary" "random"
  1275. }
  1276. }
  1277.  
  1278. "Ak Colt"
  1279. {
  1280. "SectionOptions"
  1281. {
  1282. "AdminMenuName" "Aim/AK-Colt"
  1283. "PlayerDisplay" "AK-Colt"
  1284. }
  1285.  
  1286. "Load"
  1287. {
  1288. "Configs" "Options Default"
  1289. "Configs" "Hidden Menu"
  1290. "Configs" "Primary AK and M4"
  1291. "Configs" "Secondary No TEC9, No Elite"
  1292. "Configs" "No Nades"
  1293. }
  1294.  
  1295. "Cvars"
  1296. {
  1297. "dm_default_primary" "random"
  1298. "dm_default_secondary" "weapon_p250"
  1299. }
  1300. }
  1301.  
  1302. "Famas Galil"
  1303. {
  1304. "SectionOptions"
  1305. {
  1306. "AdminMenuName" "Aim/Famas-Galil"
  1307. "PlayerDisplay" "Famas-Galil"
  1308. }
  1309.  
  1310. "Load"
  1311. {
  1312. "Configs" "Options Default"
  1313. "Configs" "No Menu"
  1314. "Configs" "Primary Famas Galil"
  1315. "Configs" "Secondary No TEC9, No Elite"
  1316. "Configs" "No Nades"
  1317. }
  1318.  
  1319. "Cvars"
  1320. {
  1321. "dm_default_primary" "random"
  1322. "dm_default_secondary" "random"
  1323. }
  1324. }
  1325.  
  1326. "Scout knives"
  1327. {
  1328. "SectionOptions"
  1329. {
  1330. "AdminMenuName" "Aim/ScoutzKnivez"
  1331. "PlayerDisplay" "ScoutzKnivez"
  1332. }
  1333.  
  1334. "Load"
  1335. {
  1336. "Configs" "Options Default"
  1337. "Configs" "No Menu"
  1338. "Configs" "No Nades"
  1339. "Configs" "Primary disabled"
  1340. "Configs" "Secondary disabled"
  1341. }
  1342.  
  1343. "Cvars"
  1344. {
  1345. "dm_default_primary" "weapon_ssg08"
  1346. "dm_default_secondary" "none"
  1347. }
  1348. }
  1349.  
  1350. "SMGs"
  1351. {
  1352. "SectionOptions"
  1353. {
  1354. "AdminMenuName" "Primary Fun/SMGs"
  1355. "PlayerDisplay" "Only SubMachine Guns"
  1356. }
  1357.  
  1358. "Load"
  1359. {
  1360. "Configs" "Options Default"
  1361. "Configs" "HE Nades"
  1362. "Configs" "Primary Smgs"
  1363. "Configs" "Secondary disabled"
  1364. }
  1365.  
  1366. "LoadWarmup"
  1367. {
  1368. "Configs" "Random weapons"
  1369. "Configs" "No Menu"
  1370. }
  1371. }
  1372.  
  1373. "Shotguns"
  1374. {
  1375. "SectionOptions"
  1376. {
  1377. "AdminMenuName" "Primary Fun/Shotguns"
  1378. "PlayerDisplay" "Only Shotguns"
  1379. }
  1380.  
  1381. "Load"
  1382. {
  1383. "Configs" "Options Default"
  1384. "Configs" "HE Nades"
  1385. "Configs" "Primary Shotguns"
  1386. "Configs" "Secondary disabled"
  1387. }
  1388.  
  1389. "LoadWarmup"
  1390. {
  1391. "Configs" "Random weapons"
  1392. "Configs" "No Menu"
  1393. }
  1394. }
  1395.  
  1396. "AWP"
  1397. {
  1398. "SectionOptions"
  1399. {
  1400. "AdminMenuName" "Aim/AWP"
  1401. "PlayerDisplay" "Only AWP"
  1402. }
  1403.  
  1404. "Load"
  1405. {
  1406. "Configs" "Options Default"
  1407. "Configs" "Hidden Menu"
  1408. "Configs" "No Nades"
  1409. "Configs" "Primary Snipers"
  1410. "Configs" "Secondary No TEC9, No Elite"
  1411. }
  1412.  
  1413. "Cvars"
  1414. {
  1415. "dm_default_primary" "weapon_awp"
  1416. "dm_default_secondary" "weapon_p250"
  1417. }
  1418.  
  1419. "UnloadMessage"
  1420. {
  1421. "Messages" "Advertise Gun Menu"
  1422. }
  1423.  
  1424. "LoadMessage"
  1425. {
  1426. "Messages" "Scout available"
  1427. }
  1428. }
  1429.  
  1430. "AutoNoobs"
  1431. {
  1432. "SectionOptions"
  1433. {
  1434. "AdminMenuName" "Primary Fun/Auto Snipes"
  1435. "PlayerDisplay" "Only Auto Snipers"
  1436. }
  1437.  
  1438. "Load"
  1439. {
  1440. "Configs" "Options Default"
  1441. "Configs" "No Menu"
  1442. "Configs" "No Nades"
  1443. "Configs" "Primary autoSnipes"
  1444. "Configs" "Secondary No TEC9, No Elite"
  1445. }
  1446.  
  1447. "Cvars"
  1448. {
  1449. "dm_default_primary" "random"
  1450. "dm_default_secondary" "random"
  1451. }
  1452. }
  1453.  
  1454. "35hp"
  1455. {
  1456. "SectionOptions"
  1457. {
  1458. "AdminMenuName" "Game/35HP"
  1459. "PlayerDisplay" "Knivez 35HP"
  1460. }
  1461.  
  1462. "Load"
  1463. {
  1464. "Configs" "Options Default"
  1465. "Configs" "No Menu"
  1466. "Configs" "No Nades"
  1467. "Configs" "No Armour"
  1468. "Configs" "Primary disabled"
  1469. "Configs" "Secondary disabled"
  1470. }
  1471.  
  1472. "Cvars"
  1473. {
  1474. "dm_hp_start" "35"
  1475. "dm_hp_max" "70"
  1476. "dm_hp_knife" "10"
  1477. "sv_gravity" "200"
  1478. "sv_airaccelerate" "500"
  1479. }
  1480.  
  1481. "LoadWarmup"
  1482. {
  1483. "Configs" "zeus"
  1484. }
  1485. }
  1486.  
  1487. "Aim"
  1488. {
  1489. "SectionOptions"
  1490. {
  1491. "AdminMenuName" "Aim/Aim"
  1492. "PlayerDisplay" "AIM"
  1493. }
  1494.  
  1495. "Load"
  1496. {
  1497. "Configs" "Options Default"
  1498. "Configs" "Primary Aim"
  1499. "Configs" "Secondary Aim"
  1500. "Configs" "No Nades"
  1501. }
  1502. }
  1503.  
  1504. "Deathmatch"
  1505. {
  1506. "SectionOptions"
  1507. {
  1508. "AdminMenuName" "Game/Deathmatch"
  1509. "PlayerDisplay" "Deathmatch"
  1510. }
  1511.  
  1512. "Load"
  1513. {
  1514. "Configs" "Options Default"
  1515. "Configs" "Primary Aim"
  1516. "Configs" "Secondary Aim"
  1517. "Configs" "No Nades"
  1518. "Configs" "no zeus"
  1519. }
  1520. }
  1521.  
  1522. "HE war"
  1523. {
  1524. "SectionOptions"
  1525. {
  1526. "AdminMenuName" "Game/HE War"
  1527. "PlayerDisplay" "HE War"
  1528. }
  1529.  
  1530. "Load"
  1531. {
  1532. "Configs" "Options Default"
  1533. "Configs" "No Menu"
  1534. "Configs" "Infinite HE"
  1535. "Configs" "No Armour"
  1536. "Configs" "Primary disabled"
  1537. "Configs" "Secondary disabled"
  1538. }
  1539. }
  1540.  
  1541. "Decoy war"
  1542. {
  1543. "SectionOptions"
  1544. {
  1545. "AdminMenuName" "Game/Decoy War"
  1546. "PlayerDisplay" "Decoy War"
  1547. }
  1548.  
  1549. "Load"
  1550. {
  1551. "Configs" "Options Default"
  1552. "Configs" "No Menu"
  1553. "Configs" "No Nades"
  1554. "Configs" "No knife"
  1555. "Configs" "No Armour"
  1556. "Configs" "Primary disabled"
  1557. "Configs" "Secondary disabled"
  1558. }
  1559.  
  1560. "Cvars"
  1561. {
  1562. "dm_hp_start" "1"
  1563. "dm_hp_max" "2"
  1564. "dm_hp_kill" "1"
  1565. "dm_hp_hs" "1"
  1566. "dm_hp_knife" "1"
  1567.  
  1568. "dm_hp_to_kevlar_mode" "0"
  1569. "dm_hp_to_helmet" "0"
  1570.  
  1571. "dm_nades_decoy" "1"
  1572. "sv_infinite_ammo" "2"
  1573. }
  1574. }
  1575.  
  1576. "Default Warmups"
  1577. {
  1578. "WarmupOption"
  1579. {
  1580. "Game Modes" "deagle"
  1581. "Game Modes" "usp"
  1582. "Game Modes" "SMGs"
  1583. "Game Modes" "Shotguns"
  1584. "Game Modes" "Famas Galil"
  1585. "Game Modes" "Pistols"
  1586. }
  1587.  
  1588. "LoadMessageWarmup"
  1589. {
  1590. "Messages" "Warmup Weapons"
  1591. }
  1592. }
  1593.  
  1594. "Warmups No gun"
  1595. {
  1596. "WarmupOption"
  1597. {
  1598. "Game Modes" "HE war"
  1599. "Game Modes" "Decoy war"
  1600. "Game Modes" "35hp"
  1601. "Game Modes" "Scout knives"
  1602. "Game Modes" "SMGs"
  1603. "Game Modes" "Shotguns"
  1604. "Game Modes" "Famas Galil"
  1605. "Game Modes" "AutoNoobs"
  1606. }
  1607.  
  1608. "LoadMessageWarmup"
  1609. {
  1610. "Messages" "Warmup Weapons"
  1611. }
  1612. }
  1613.  
  1614. "Warmups No knife"
  1615. {
  1616. "WarmupOption"
  1617. {
  1618. "Game Modes" "HE war"
  1619. "Game Modes" "Decoy war"
  1620. "Game Modes" "deagle"
  1621. "Game Modes" "usp"
  1622. "Game Modes" "mag7"
  1623. "Game Modes" "Scout knives"
  1624. "Game Modes" "SMGs"
  1625. "Game Modes" "Shotguns"
  1626. "Game Modes" "Famas Galil"
  1627. "Game Modes" "AutoNoobs"
  1628. "Game Modes" "Pistols"
  1629. }
  1630.  
  1631. "LoadMessageWarmup"
  1632. {
  1633. "Messages" "Warmup Weapons"
  1634. }
  1635. }
  1636.  
  1637. "Warmups no snipe"
  1638. {
  1639. "WarmupOption"
  1640. {
  1641. "Game Modes" "HE war"
  1642. "Game Modes" "Decoy war"
  1643. "Game Modes" "35hp"
  1644. "Game Modes" "deagle"
  1645. "Game Modes" "usp"
  1646. "Game Modes" "mag7"
  1647. "Game Modes" "SMGs"
  1648. "Game Modes" "Shotguns"
  1649. "Game Modes" "Famas Galil"
  1650. "Game Modes" "Pistols"
  1651. }
  1652.  
  1653. "LoadMessageWarmup"
  1654. {
  1655. "Messages" "Warmup Weapons"
  1656. }
  1657. }
  1658.  
  1659. "Warmups he"
  1660. {
  1661. "WarmupOption"
  1662. {
  1663. "Game Modes" "35hp"
  1664. "Game Modes" "deagle"
  1665. "Game Modes" "mag7"
  1666. "Game Modes" "SMGs"
  1667. "Game Modes" "Shotguns"
  1668. "Game Modes" "Pistols"
  1669. }
  1670.  
  1671. "LoadMessageWarmup"
  1672. {
  1673. "Messages" "Warmup Weapons"
  1674. }
  1675. }
  1676. }
  1677.  
  1678. "Maps"
  1679. {
  1680. "aim_map_p250"
  1681. {
  1682. "LoadRound"
  1683. {
  1684. "Game Modes" "p250"
  1685. }
  1686.  
  1687. "LoadWarmup"
  1688. {
  1689. "Game Modes" "Warmups No gun"
  1690. }
  1691. }
  1692.  
  1693. "aim_map_usp"
  1694. {
  1695. "LoadRound"
  1696. {
  1697. "Game Modes" "usp"
  1698. }
  1699.  
  1700. "LoadWarmup"
  1701. {
  1702. "Game Modes" "Warmups No gun"
  1703. }
  1704. }
  1705.  
  1706. "aim_pistol"
  1707. {
  1708. "LoadRound"
  1709. {
  1710. "Game Modes" "Mid Power guns"
  1711. }
  1712.  
  1713. "LoadWarmup"
  1714. {
  1715. "Game Modes" "Warmups No gun"
  1716. }
  1717. }
  1718.  
  1719. "aim_ak-colt"
  1720. {
  1721. "LoadRound"
  1722. {
  1723. "Game Modes" "Ak Colt"
  1724. }
  1725.  
  1726. "LoadWarmup"
  1727. {
  1728. "Game Modes" "Default Warmups"
  1729. }
  1730. }
  1731.  
  1732. "scoutzknivez"
  1733. {
  1734. "LoadRound"
  1735. {
  1736. "Game Modes" "Scout knives"
  1737. }
  1738.  
  1739. "LoadWarmup"
  1740. {
  1741. "Game Modes" "Warmups no snipe"
  1742. }
  1743.  
  1744. "Load"
  1745. {
  1746. "Configs" "Scout knives low gravity"
  1747. }
  1748. }
  1749.  
  1750. "awp"
  1751. {
  1752. "LoadRound"
  1753. {
  1754. "Game Modes" "AWP"
  1755. }
  1756.  
  1757. "LoadWarmup"
  1758. {
  1759. "Game Modes" "Warmups no snipe"
  1760. }
  1761. }
  1762.  
  1763. "scout"
  1764. {
  1765. "LoadRound"
  1766. {
  1767. "Game Modes" "Scout knives"
  1768. }
  1769.  
  1770. "LoadWarmup"
  1771. {
  1772. "Game Modes" "Warmups no snipe"
  1773. }
  1774. }
  1775.  
  1776. "35hp"
  1777. {
  1778. "LoadRound"
  1779. {
  1780. "Game Modes" "35hp"
  1781. "Configs" "Duration 5mn"
  1782. }
  1783.  
  1784. "LoadWarmup"
  1785. {
  1786. "Game Modes" "Warmups No knife"
  1787. }
  1788. }
  1789.  
  1790. "he"
  1791. {
  1792. "LoadRound"
  1793. {
  1794. "Game Modes" "HE war"
  1795. "Configs" "Duration 5mn"
  1796. }
  1797.  
  1798. "LoadWarmup"
  1799. {
  1800. "Game Modes" "Warmups he"
  1801. }
  1802.  
  1803. }
  1804.  
  1805. "aim"
  1806. {
  1807. "LoadRound"
  1808. {
  1809. "Game Modes" "Aim"
  1810. }
  1811.  
  1812. "LoadWarmup"
  1813. {
  1814. "Game Modes" "Default Warmups"
  1815. }
  1816. }
  1817.  
  1818. "fy"
  1819. {
  1820. "LoadRound"
  1821. {
  1822. "Game Modes" "Deathmatch"
  1823. "Configs" "Options Default"
  1824. }
  1825.  
  1826. "LoadWarmup"
  1827. {
  1828. "Game Modes" "Default Warmups"
  1829. }
  1830.  
  1831. "#LoadType" "KeptLoads"
  1832. "#LoadType" "LockedLoads"
  1833.  
  1834. "Load"
  1835. {
  1836. "Configs" "Random Spawn"
  1837. }
  1838.  
  1839. "Cvars"
  1840. {
  1841. "mp_teammates_are_enemies" "0"
  1842. }
  1843. }
  1844.  
  1845. "gg"
  1846. {
  1847. "Load"
  1848. {
  1849. "Maps" "fy"
  1850. }
  1851. }
  1852.  
  1853. ""
  1854. {
  1855. "Load"
  1856. {
  1857. "Maps" "fy"
  1858. }
  1859.  
  1860. }
  1861. }
  1862. }
Advertisement
Add Comment
Please, Sign In to add comment