Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.82 KB | None | 0 0
  1. // ============================================================================
  2. //
  3. // ZOMBIE:RELOADED
  4. // Weapon configuration
  5. //
  6. // Check the weapon configuration section in the manual for detailed info.
  7. //
  8. // ============================================================================
  9. //
  10. // SHORT DESCRIPTIONS
  11. //
  12. // Attribute: Values: Description:
  13. // ----------------------------------------------------------------------------
  14. // weaponentity text The entity name of the weapon refered to. (Don't change this)
  15. // weapontype text The type of weapon it is. [List types, separate by ", "]
  16. // weaponslot number The slot index the weapon resides in. (Don't change this)
  17. // restrictdefault yes/no The default restricted status of the weapon on map start.
  18. // toggleable yes/no Enable weapon to have restrictions toggled mid-game.
  19. // ammotype text Ammo entity that belongs to weapons. (Don't change this)
  20. // ammoprice number Price of ammo for this weapon.
  21. // knockback decimal The knockback multiplier for the weapon. ['0.5' = half knockback | 2.0 = double]
  22. // zmarketprice number The price of the weapon in ZMarket. [Default: CS:S buymenu price]
  23. // zmarketpurchasemax number The max number of purchases allowed per spawn for the weapon.
  24. //
  25. // Notes:
  26. // * Omitting and option will disable the feature for the weapon.
  27.  
  28. "weapons" // Counter-Strike: Source weapons
  29. {
  30. "Glock"
  31. {
  32. // General
  33.  
  34. "weaponentity" "weapon_glock"
  35. "weapontype" "All, Pistol"
  36. "weaponslot" "1"
  37.  
  38. // Restrict (core)
  39.  
  40. "restrictdefault" "no"
  41. "toggleable" "yes"
  42.  
  43. // Weapon Ammo (core)
  44.  
  45. "ammotype" "ammo_9mm"
  46. "ammoprice" "100"
  47.  
  48. // Knockback (module)
  49.  
  50. "knockback" "1.5"
  51.  
  52. // ZMarket (module)
  53.  
  54. "zmarketprice" "200"
  55. "zmarketcommand" "sm_glock"
  56. }
  57.  
  58. "P2000" //A1
  59. {
  60. // General
  61.  
  62. "weaponentity" "weapon_hkp2000"
  63. "weapontype" "All, Pistol"
  64. "weaponslot" "1"
  65.  
  66. // Restrict (core)
  67.  
  68. "restrictdefault" "no"
  69. "toggleable" "yes"
  70.  
  71. // Weapon Ammo (core)
  72.  
  73. "ammotype" "ammo_357sig"
  74. "ammoprice" "100"
  75.  
  76. // Knockback (module)
  77.  
  78. "knockback" "1.5"
  79.  
  80. // ZMarket (module)
  81.  
  82. "zmarketprice" "200"
  83. "zmarketcommand" "sm_p2000"
  84. }
  85.  
  86. "USP" //B1
  87. {
  88. // General
  89.  
  90. "weaponentity" "weapon_usp_silencer"
  91. "weapontype" "All, Pistol"
  92. "weaponslot" "1"
  93.  
  94. // Restrict (core)
  95.  
  96. "restrictdefault" "no"
  97. "toggleable" "yes"
  98.  
  99. // Weapon Ammo (core)
  100.  
  101. "ammotype" "ammo_357sig_small"
  102. "ammoprice" "100"
  103.  
  104. // Knockback (module)
  105.  
  106. "knockback" "1.5"
  107.  
  108. // ZMarket (module)
  109.  
  110. "zmarketprice" "200"
  111. "zmarketcommand" "sm_usp"
  112. }
  113.  
  114. "P250"
  115. {
  116. // General
  117.  
  118. "weaponentity" "weapon_p250"
  119. "weapontype" "All, Pistol"
  120. "weaponslot" "1"
  121.  
  122. // Restrict (core)
  123.  
  124. "restrictdefault" "no"
  125. "toggleable" "yes"
  126.  
  127. // Weapon Ammo (core)
  128.  
  129. "ammotype" "ammo_357sig_p250"
  130. "ammoprice" "100"
  131.  
  132. // Knockback (module)
  133.  
  134. "knockback" "1.5"
  135.  
  136. // ZMarket (module)
  137.  
  138. "zmarketprice" "300"
  139. "zmarketcommand" "sm_p250"
  140. }
  141.  
  142. "Deagle" //A2
  143. {
  144. // General
  145.  
  146. "weaponentity" "weapon_deagle"
  147. "weapontype" "All, Pistol"
  148. "weaponslot" "1"
  149.  
  150. // Restrict (core)
  151.  
  152. "restrictdefault" "no"
  153. "toggleable" "yes"
  154.  
  155. // Weapon Ammo (core)
  156.  
  157. "ammotype" "ammo_50ae"
  158. "ammoprice" "100"
  159.  
  160. // Knockback (module)
  161.  
  162. "knockback" "1.5"
  163.  
  164. // ZMarket (module)
  165.  
  166. "zmarketprice" "700"
  167. "zmarketcommand" "sm_deagle"
  168. }
  169.  
  170. "Revolver" //B2
  171. {
  172. // General
  173.  
  174. "weaponentity" "weapon_revolver"
  175. "weapontype" "All, Pistol"
  176. "weaponslot" "1"
  177.  
  178. // Restrict (core)
  179.  
  180. "restrictdefault" "no"
  181. "toggleable" "yes"
  182.  
  183. // Weapon Ammo (core)
  184.  
  185. "ammotype" "ammo_50ae" //?
  186. "ammoprice" "100"
  187.  
  188. // Knockback (module)
  189.  
  190. "knockback" "1.5"
  191.  
  192. // ZMarket (module)
  193.  
  194. "zmarketprice" "850"
  195. "zmarketcommand" "sm_revolver"
  196. }
  197.  
  198. "Elite"
  199. {
  200. // General
  201.  
  202. "weaponentity" "weapon_elite"
  203. "weapontype" "All, Pistol"
  204. "weaponslot" "1"
  205.  
  206. // Restrict (core)
  207.  
  208. "restrictdefault" "no"
  209. "toggleable" "yes"
  210.  
  211. // Weapon Ammo (core)
  212.  
  213. "ammotype" "ammo_9mm"
  214. "ammoprice" "100"
  215.  
  216. // Knockback (module)
  217.  
  218. "knockback" "1.4"
  219.  
  220. // ZMarket (module)
  221.  
  222. "zmarketprice" "500"
  223. "zmarketcommand" "sm_elite"
  224. }
  225.  
  226. "Fiveseven" //A3
  227. {
  228. // General
  229.  
  230. "weaponentity" "weapon_fiveseven"
  231. "weapontype" "All, Pistol"
  232. "weaponslot" "1"
  233.  
  234. // Restrict (core)
  235.  
  236. "restrictdefault" "no"
  237. "toggleable" "yes"
  238.  
  239. // Weapon Ammo (core)
  240.  
  241. "ammotype" "ammo_57mm"
  242. "ammoprice" "100"
  243.  
  244. // Knockback (module)
  245.  
  246. "knockback" "1.5"
  247.  
  248. // ZMarket (module)
  249.  
  250. "zmarketprice" "500"
  251. "zmarketcommand" "sm_fiveseven"
  252. }
  253.  
  254. "Tec9" //B3
  255. {
  256. // General
  257.  
  258. "weaponentity" "weapon_tec9"
  259. "weapontype" "All, Pistol"
  260. "weaponslot" "1"
  261.  
  262. // Restrict (core)
  263.  
  264. "restrictdefault" "no"
  265. "toggleable" "yes"
  266.  
  267. // Weapon Ammo (core)
  268.  
  269. "ammotype" "ammo_9mm"
  270. "ammoprice" "100"
  271.  
  272. // Knockback (module)
  273.  
  274. "knockback" "1.5"
  275.  
  276. // ZMarket (module)
  277.  
  278. "zmarketprice" "500"
  279. "zmarketcommand" "sm_tec9"
  280. }
  281.  
  282. "CZ75" //C3
  283. {
  284. // General
  285.  
  286. "weaponentity" "weapon_cz75a"
  287. "weapontype" "All, Pistol"
  288. "weaponslot" "1"
  289.  
  290. // Restrict (core)
  291.  
  292. "restrictdefault" "no"
  293. "toggleable" "yes"
  294.  
  295. // Weapon Ammo (core)
  296.  
  297. "ammotype" "ammo_357sig_min"
  298. "ammoprice" "100"
  299.  
  300. // Knockback (module)
  301.  
  302. "knockback" "1.5"
  303.  
  304. // ZMarket (module)
  305.  
  306. "zmarketprice" "500"
  307. "zmarketcommand" "sm_cz75"
  308. }
  309.  
  310. "Nova"
  311. {
  312. // General
  313.  
  314. "weaponentity" "weapon_nova"
  315. "weapontype" "All, Shotgun"
  316. "weaponslot" "0"
  317.  
  318. // Restrict (core)
  319.  
  320. "restrictdefault" "no"
  321. "toggleable" "yes"
  322.  
  323. // Weapon Ammo (core)
  324.  
  325. "ammotype" "ammo_buckshot"
  326. "ammoprice" "300"
  327.  
  328. // Knockback (module)
  329.  
  330. "knockback" "1.2" // Remember that there are 8 pellets in 1 shot.
  331.  
  332. // ZMarket (module)
  333.  
  334. "zmarketprice" "1200"
  335. "zmarketcommand" "sm_nova"
  336. }
  337.  
  338. "XM1014"
  339. {
  340. // General
  341.  
  342. "weaponentity" "weapon_xm1014"
  343. "weapontype" "All, Shotgun"
  344. "weaponslot" "0"
  345.  
  346. // Restrict (core)
  347.  
  348. "restrictdefault" "no"
  349. "toggleable" "yes"
  350.  
  351. // Weapon Ammo (core)
  352.  
  353. "ammotype" "ammo_buckshot"
  354. "ammoprice" "300"
  355.  
  356. // Knockback (module)
  357.  
  358. "knockback" "1.2" // Remember that there are 8 pellets in 1 shot.
  359.  
  360. // ZMarket (module)
  361.  
  362. "zmarketprice" "2000"
  363. "zmarketcommand" "sm_xm1014"
  364. }
  365.  
  366. "Sawed-Off"
  367. {
  368. // General
  369.  
  370. "weaponentity" "weapon_sawedoff"
  371. "weapontype" "All, Shotgun"
  372. "weaponslot" "0"
  373.  
  374. // Restrict (core)
  375.  
  376. "restrictdefault" "no"
  377. "toggleable" "yes"
  378.  
  379. // Weapon Ammo (core)
  380.  
  381. "ammotype" "ammo_buckshot"
  382. "ammoprice" "300"
  383.  
  384. // Knockback (module)
  385.  
  386. "knockback" "1.2" // Remember that there are 8 pellets in 1 shot.
  387.  
  388. // ZMarket (module)
  389.  
  390. "zmarketprice" "1200"
  391. "zmarketcommand" "sm_sawedoff"
  392. }
  393.  
  394. "Mag-7"
  395. {
  396. // General
  397.  
  398. "weaponentity" "weapon_mag7"
  399. "weapontype" "All, Shotgun"
  400. "weaponslot" "0"
  401.  
  402. // Restrict (core)
  403.  
  404. "restrictdefault" "no"
  405. "toggleable" "yes"
  406.  
  407. // Weapon Ammo (core)
  408.  
  409. "ammotype" "ammo_buckshot"
  410. "ammoprice" "300"
  411.  
  412. // Knockback (module)
  413.  
  414. "knockback" "1.2" // Remember that there are 8 pellets in 1 shot.
  415.  
  416. // ZMarket (module)
  417.  
  418. "zmarketprice" "1800"
  419. "zmarketcommand" "sm_mag7"
  420. }
  421.  
  422. "Mac10"
  423. {
  424. // General
  425.  
  426. "weaponentity" "weapon_mac10"
  427. "weapontype" "All, SMG"
  428. "weaponslot" "0"
  429.  
  430. // Restrict (core)
  431.  
  432. "restrictdefault" "no"
  433. "toggleable" "yes"
  434.  
  435. // Weapon Ammo (core)
  436.  
  437. "ammotype" "ammo_45acp"
  438. "ammoprice" "300"
  439.  
  440. // Knockback (module)
  441.  
  442. "knockback" "1.4"
  443.  
  444. // ZMarket (module)
  445.  
  446. "zmarketprice" "1050"
  447. "zmarketcommand" "sm_mac10"
  448. }
  449.  
  450. "MP9"
  451. {
  452. // General
  453.  
  454. "weaponentity" "weapon_mp9"
  455. "weapontype" "All, SMG"
  456. "weaponslot" "0"
  457.  
  458. // Restrict (core)
  459.  
  460. "restrictdefault" "no"
  461. "toggleable" "yes"
  462.  
  463. // Weapon Ammo (core)
  464.  
  465. "ammotype" "ammo_9mm"
  466. "ammoprice" "300"
  467.  
  468. // Knockback (module)
  469.  
  470. "knockback" "1.4"
  471.  
  472. // ZMarket (module)
  473.  
  474. "zmarketprice" "1250"
  475. "zmarketcommand" "sm_mp9"
  476. }
  477.  
  478. "Bizon"
  479. {
  480. // General
  481.  
  482. "weaponentity" "weapon_bizon"
  483. "weapontype" "All, SMG"
  484. "weaponslot" "0"
  485.  
  486. // Restrict (core)
  487.  
  488. "restrictdefault" "no"
  489. "toggleable" "yes"
  490.  
  491. // Weapon Ammo (core)
  492.  
  493. "ammotype" "ammo_9mm"
  494. "ammoprice" "100"
  495.  
  496. // Knockback (module)
  497.  
  498. "knockback" "1.4"
  499.  
  500. // ZMarket (module)
  501.  
  502. "zmarketprice" "1400"
  503. "zmarketcommand" "sm_bizon"
  504. }
  505.  
  506.  
  507. "MP7"
  508. {
  509. // General
  510.  
  511. "weaponentity" "weapon_mp7"
  512. "weapontype" "All, SMG"
  513. "weaponslot" "0"
  514.  
  515. // Restrict (core)
  516.  
  517. "restrictdefault" "no"
  518. "toggleable" "yes"
  519.  
  520. // Weapon Ammo (core)
  521.  
  522. "ammotype" "ammo_9mm"
  523. "ammoprice" "300"
  524.  
  525. // Knockback (module)
  526.  
  527. "knockback" "1.4"
  528.  
  529. // ZMarket (module)
  530.  
  531. "zmarketprice" "1700"
  532. "zmarketcommand" "sm_mp7"
  533. }
  534.  
  535. "UMP45"
  536. {
  537. // General
  538.  
  539. "weaponentity" "weapon_ump45"
  540. "weapontype" "All, SMG"
  541. "weaponslot" "0"
  542.  
  543. // Restrict (core)
  544.  
  545. "restrictdefault" "no"
  546. "toggleable" "yes"
  547.  
  548. // Weapon Ammo (core)
  549.  
  550. "ammotype" "ammo_45acp"
  551. "ammoprice" "300"
  552.  
  553. // Knockback (module)
  554.  
  555. "knockback" "1.4"
  556.  
  557. // ZMarket (module)
  558.  
  559. "zmarketprice" "1200"
  560. "zmarketcommand" "sm_ump45"
  561. }
  562.  
  563. "P90"
  564. {
  565. // General
  566.  
  567. "weaponentity" "weapon_p90"
  568. "weapontype" "All, SMG"
  569. "weaponslot" "0"
  570.  
  571. // Restrict (core)
  572.  
  573. "restrictdefault" "no"
  574. "toggleable" "yes"
  575.  
  576. // Weapon Ammo (core)
  577.  
  578. "ammotype" "ammo_57mm"
  579. "ammoprice" "300"
  580.  
  581. // Knockback (module)
  582.  
  583. "knockback" "1.4"
  584.  
  585. // ZMarket (module)
  586.  
  587. "zmarketprice" "2350"
  588. "zmarketcommand" "sm_p90"
  589. }
  590.  
  591. "Galil AR"
  592. {
  593. // General
  594.  
  595. "weaponentity" "weapon_galilar"
  596. "weapontype" "All, Rifle"
  597. "weaponslot" "0"
  598.  
  599. // Restrict (core)
  600.  
  601. "restrictdefault" "no"
  602. "toggleable" "yes"
  603.  
  604. // Weapon Ammo (core)
  605.  
  606. "ammotype" "ammo_556mm"
  607. "ammoprice" "500"
  608.  
  609. // Knockback (module)
  610.  
  611. "knockback" "1.4"
  612.  
  613. // ZMarket (module)
  614.  
  615. "zmarketprice" "2000"
  616. "zmarketcommand" "sm_galilar"
  617. }
  618.  
  619. "Famas"
  620. {
  621. // General
  622.  
  623. "weaponentity" "weapon_famas"
  624. "weapontype" "All, Rifle"
  625. "weaponslot" "0"
  626.  
  627. // Restrict (core)
  628.  
  629. "restrictdefault" "no"
  630. "toggleable" "yes"
  631.  
  632. // Weapon Ammo (core)
  633.  
  634. "ammotype" "ammo_556mm"
  635. "ammoprice" "500"
  636.  
  637. // Knockback (module)
  638.  
  639. "knockback" "1.4"
  640.  
  641. // ZMarket (module)
  642.  
  643. "zmarketprice" "2250"
  644. "zmarketcommand" "sm_famas"
  645. }
  646.  
  647. "AK47"
  648. {
  649. // General
  650.  
  651. "weaponentity" "weapon_ak47"
  652. "weapontype" "All, Rifle"
  653. "weaponslot" "0"
  654.  
  655. // Restrict (core)
  656.  
  657. "restrictdefault" "no"
  658. "toggleable" "yes"
  659.  
  660. // Weapon Ammo (core)
  661.  
  662. "ammotype" "ammo_762mm"
  663. "ammoprice" "500"
  664.  
  665. // Knockback (module)
  666.  
  667. "knockback" "1.4"
  668.  
  669. // ZMarket (module)
  670.  
  671. "zmarketprice" "2700"
  672. "zmarketcommand" "sm_ak47"
  673. }
  674.  
  675. "M4A1"
  676. {
  677. // General
  678.  
  679. "weaponentity" "weapon_m4a1"
  680. "weapontype" "All, Rifle"
  681. "weaponslot" "0"
  682.  
  683. // Restrict (core)
  684.  
  685. "restrictdefault" "no"
  686. "toggleable" "yes"
  687.  
  688. // Weapon Ammo (core)
  689.  
  690. "ammotype" "ammo_556mm"
  691. "ammoprice" "500"
  692.  
  693. // Knockback (module)
  694.  
  695. "knockback" "1.4"
  696.  
  697. // ZMarket (module)
  698.  
  699. "zmarketprice" "3100"
  700. "zmarketcommand" "sm_m4a1"
  701. }
  702.  
  703. "SG556"
  704. {
  705. // General
  706.  
  707. "weaponentity" "weapon_sg556"
  708. "weapontype" "All, Rifle"
  709. "weaponslot" "0"
  710.  
  711. // Restrict (core)
  712.  
  713. "restrictdefault" "no"
  714. "toggleable" "yes"
  715.  
  716. // Weapon Ammo (core)
  717.  
  718. "ammotype" "ammo_556mm"
  719. "ammoprice" "500"
  720.  
  721. // Knockback (module)
  722.  
  723. "knockback" "1.4"
  724.  
  725. // ZMarket (module)
  726.  
  727. "zmarketprice" "3000"
  728. "zmarketcommand" "sm_sg556"
  729. }
  730.  
  731. "AUG"
  732. {
  733. // General
  734.  
  735. "weaponentity" "weapon_aug"
  736. "weapontype" "All, Rifle"
  737. "weaponslot" "0"
  738.  
  739. // Restrict (core)
  740.  
  741. "restrictdefault" "no"
  742. "toggleable" "yes"
  743.  
  744. // Weapon Ammo (core)
  745.  
  746. "ammotype" "ammo_762mm"
  747. "ammoprice" "500"
  748.  
  749. // Knockback (module)
  750.  
  751. "knockback" "1.4"
  752.  
  753. // ZMarket (module)
  754.  
  755. "zmarketprice" "3300"
  756. "zmarketcommand" "sm_aug"
  757. }
  758.  
  759. "SSG 08"
  760. {
  761. // General
  762.  
  763. "weaponentity" "weapon_ssg08"
  764. "weapontype" "All, Sniper"
  765. "weaponslot" "0"
  766.  
  767. // Restrict (core)
  768.  
  769. "restrictdefault" "yes"
  770. "toggleable" "yes"
  771.  
  772. // Weapon Ammo (core)
  773.  
  774. "ammotype" "ammo_762mm"
  775. "ammoprice" "750"
  776.  
  777. // Knockback (module)
  778.  
  779. "knockback" "2.2"
  780.  
  781. // ZMarket (module)
  782.  
  783. "zmarketprice" "1700"
  784. "zmarketcommand" "sm_ssg08"
  785. }
  786.  
  787. "SCAR-20"
  788. {
  789. // General
  790.  
  791. "weaponentity" "weapon_scar20"
  792. "weapontype" "All, Sniper"
  793. "weaponslot" "0"
  794.  
  795. // Restrict (core)
  796.  
  797. "restrictdefault" "yes"
  798. "toggleable" "yes"
  799.  
  800. // Weapon Ammo (core)
  801.  
  802. "ammotype" "ammo_556mm"
  803. "ammoprice" "1000"
  804.  
  805. // Knockback (module)
  806.  
  807. "knockback" "1.3"
  808.  
  809. // ZMarket (module)
  810.  
  811. "zmarketprice" "5000"
  812. "zmarketcommand" "sm_scar20"
  813. }
  814.  
  815. "G3SG1"
  816. {
  817. // General
  818.  
  819. "weaponentity" "weapon_g3sg1"
  820. "weapontype" "All, Sniper"
  821. "weaponslot" "0"
  822.  
  823. // Restrict (core)
  824.  
  825. "restrictdefault" "yes"
  826. "toggleable" "yes"
  827.  
  828. // Weapon Ammo (core)
  829.  
  830. "ammotype" "ammo_762mm"
  831. "ammoprice" "1000"
  832.  
  833. // Knockback (module)
  834.  
  835. "knockback" "1.3"
  836.  
  837. // ZMarket (module)
  838.  
  839. "zmarketprice" "5000"
  840. "zmarketcommand" "sm_g3sg1"
  841. }
  842.  
  843. "AWP"
  844. {
  845. // General
  846.  
  847. "weaponentity" "weapon_awp"
  848. "weapontype" "All, Sniper"
  849. "weaponslot" "0"
  850.  
  851. // Restrict (core)
  852.  
  853. "restrictdefault" "yes"
  854. "toggleable" "yes"
  855.  
  856. // Weapon Ammo (core)
  857.  
  858. "ammotype" "ammo_338mag"
  859. "ammoprice" "1000"
  860.  
  861. // Knockback (module)
  862.  
  863. "knockback" "2.2"
  864.  
  865. // ZMarket (module)
  866.  
  867. "zmarketprice" "4750"
  868. "zmarketcommand" "sm_awp"
  869. }
  870.  
  871. "M249"
  872. {
  873. // General
  874.  
  875. "weaponentity" "weapon_m249"
  876. "weapontype" "All, Machine Gun"
  877. "weaponslot" "0"
  878.  
  879. // Restrict (core)
  880.  
  881. "restrictdefault" "no"
  882. "toggleable" "yes"
  883.  
  884. // Weapon Ammo (core)
  885.  
  886. "ammotype" "ammo_556mm_box"
  887. "ammoprice" "1500"
  888.  
  889. // Knockback (module)
  890.  
  891. "knockback" "1.4"
  892.  
  893. // ZMarket (module)
  894.  
  895. "zmarketprice" "5200"
  896. "zmarketcommand" "sm_m249"
  897. }
  898.  
  899. "Negev"
  900. {
  901. // General
  902.  
  903. "weaponentity" "weapon_negev"
  904. "weapontype" "All, Machine Gun"
  905. "weaponslot" "0"
  906.  
  907. // Restrict (core)
  908.  
  909. "restrictdefault" "no"
  910. "toggleable" "yes"
  911.  
  912. // Weapon Ammo (core)
  913.  
  914. "ammotype" "ammo_556mm_box"
  915. "ammoprice" "1500"
  916.  
  917. // Knockback (module)
  918.  
  919. "knockback" "1.4"
  920.  
  921. // ZMarket (module)
  922.  
  923. "zmarketprice" "5700"
  924. "zmarketcommand" "sm_negev"
  925. }
  926.  
  927. "Knife"
  928. {
  929. // General
  930.  
  931. "weaponentity" "weapon_knife"
  932. "weapontype" "All, Melee"
  933. "weaponslot" "2"
  934.  
  935. // Restrict (core)
  936.  
  937. "restrictdefault" "no"
  938. "toggleable" "no"
  939.  
  940. // Knockback (module)
  941.  
  942. "knockback" "10.4"
  943. }
  944.  
  945. "HEGrenade"
  946. {
  947. // General
  948.  
  949. "weaponentity" "weapon_hegrenade"
  950. "weapontype" "All, Grenades"
  951. "weaponslot" "3"
  952.  
  953. // Restrict (core)
  954.  
  955. "restrictdefault" "no"
  956. "toggleable" "yes"
  957.  
  958. // Knockback (module)
  959.  
  960. "knockback" "6.4"
  961.  
  962. // ZMarket (module)
  963.  
  964. "zmarketprice" "300"
  965. "zmarketcommand" "sm_he"
  966. "zmarketpurchasemax" "1"
  967. }
  968.  
  969. "Molotov"
  970. {
  971. // General
  972.  
  973. "weaponentity" "weapon_molotov"
  974. "weapontype" "All, Grenades"
  975. "weaponslot" "3"
  976.  
  977. // Restrict (core)
  978.  
  979. "restrictdefault" "yes" // Unable to be bought at all trough ZMarket.
  980. "toggleable" "no"
  981.  
  982. // ZMarket (module)
  983.  
  984. "zmarketprice" "400"
  985. "zmarketcommand" "sm_molotov"
  986. "zmarketpurchasemax" "1"
  987. }
  988.  
  989. "Incendiary"
  990. {
  991. // General
  992.  
  993. "weaponentity" "weapon_incgrenade"
  994. "weapontype" "All, Grenades"
  995. "weaponslot" "3"
  996.  
  997. // Restrict (core)
  998.  
  999. "restrictdefault" "yes" // Unable to be bought at all trough ZMarket.
  1000. "toggleable" "no"
  1001.  
  1002. // ZMarket (module)
  1003.  
  1004. "zmarketprice" "600"
  1005. "zmarketcommand" "sm_incendiary"
  1006. "zmarketpurchasemax" "1"
  1007. }
  1008.  
  1009. "Decoy"
  1010. {
  1011. // General
  1012.  
  1013. "weaponentity" "weapon_decoy"
  1014. "weapontype" "All, Grenades"
  1015. "weaponslot" "3"
  1016.  
  1017. // Restrict (core)
  1018.  
  1019. "restrictdefault" "yes" // Unable to be bought at all trough ZMarket.
  1020. "toggleable" "no"
  1021.  
  1022. // ZMarket (module)
  1023.  
  1024. "zmarketprice" "50"
  1025. "zmarketcommand" "sm_decoy"
  1026. "zmarketpurchasemax" "1"
  1027. }
  1028.  
  1029. "Flashbang"
  1030. {
  1031. // General
  1032.  
  1033. "weaponentity" "weapon_flashbang"
  1034. "weapontype" "All, Grenades"
  1035. "weaponslot" "3"
  1036.  
  1037. // Restrict (core)
  1038.  
  1039. "restrictdefault" "yes"
  1040. "toggleable" "yes"
  1041.  
  1042. // ZMarket (module)
  1043.  
  1044. "zmarketprice" "200"
  1045. "zmarketcommand" "sm_flash"
  1046. "zmarketpurchasemax" "1"
  1047. }
  1048.  
  1049. "Smokegrenade"
  1050. {
  1051. // General
  1052.  
  1053. "weaponentity" "weapon_smokegrenade"
  1054. "weapontype" "All, Grenades"
  1055. "weaponslot" "3"
  1056.  
  1057. // Restrict (core)
  1058.  
  1059. "restrictdefault" "yes"
  1060. "toggleable" "yes"
  1061.  
  1062. // ZMarket (module)
  1063.  
  1064. "zmarketprice" "300"
  1065. "zmarketcommand" "sm_smoke"
  1066. "zmarketpurchasemax" "1"
  1067. }
  1068.  
  1069. "Kevlar Vest"
  1070. {
  1071. // General
  1072.  
  1073. "weaponentity" "item_kevlar"
  1074. "weapontype" "All, Equipment"
  1075. "weaponslot" "5"
  1076.  
  1077. // Restrict (core)
  1078.  
  1079. "restrictdefault" "no"
  1080. "toggleable" "yes"
  1081.  
  1082. // ZMarket (module)
  1083.  
  1084. "zmarketprice" "1000"
  1085. "zmarketcommand" "sm_kevlar"
  1086. }
  1087.  
  1088. "NVGs"
  1089. {
  1090. // General
  1091.  
  1092. "weaponentity" "item_nvgs"
  1093. "weapontype" "All, Equipment"
  1094. "weaponslot" "5"
  1095.  
  1096. // Restrict (core)
  1097.  
  1098. "restrictdefault" "yes"
  1099. "toggleable" "no"
  1100.  
  1101. // ZMarket (module)
  1102.  
  1103. "zmarketprice" "1000"
  1104. "zmarketcommand" "sm_nvg"
  1105. }
  1106.  
  1107. "Zeus"
  1108. {
  1109. // General
  1110.  
  1111. "weaponentity" "weapon_taser"
  1112. "weapontype" "All, Equipment"
  1113. "weaponslot" "2"
  1114.  
  1115. // Restrict (core)
  1116.  
  1117. "restrictdefault" "yes"
  1118. "toggleable" "no"
  1119.  
  1120. // ZMarket (module)
  1121.  
  1122. "zmarketprice" "200"
  1123. "zmarketcommand" "sm_zeus"
  1124. }
  1125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement