Advertisement
sharivan

weapons zmbr

Sep 10th, 2014
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.92 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. "Glock18"
  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" "300"
  55. }
  56.  
  57. "P2000"
  58. {
  59. // General
  60.  
  61. "weaponentity" "weapon_hkp2000"
  62. "weapontype" "All, Pistol"
  63. "weaponslot" "1"
  64.  
  65. // Restrict (core)
  66.  
  67. "restrictdefault" "no"
  68. "toggleable" "yes"
  69.  
  70. // Weapon Ammo (core)
  71.  
  72. "ammotype" "ammo_357sig"
  73. "ammoprice" "100"
  74.  
  75. // Knockback (module)
  76.  
  77. "knockback" "1.5"
  78.  
  79. // ZMarket (module)
  80.  
  81. "zmarketprice" "300"
  82. }
  83.  
  84. "USP"
  85. {
  86. // General
  87.  
  88. "weaponentity" "weapon_usp_silencer"
  89. "weapontype" "All, Pistol"
  90. "weaponslot" "1"
  91.  
  92. // Restrict (core)
  93.  
  94. "restrictdefault" "no"
  95. "toggleable" "yes"
  96.  
  97. // Weapon Ammo (core)
  98.  
  99. "ammotype" "ammo_357sig"
  100. "ammoprice" "100"
  101.  
  102. // Knockback (module)
  103.  
  104. "knockback" "1.5"
  105.  
  106. // ZMarket (module)
  107.  
  108. "zmarketprice" "300"
  109. }
  110.  
  111. "P250"
  112. {
  113. // General
  114.  
  115. "weaponentity" "weapon_p250"
  116. "weapontype" "All, Pistol"
  117. "weaponslot" "1"
  118.  
  119. // Restrict (core)
  120.  
  121. "restrictdefault" "no"
  122. "toggleable" "yes"
  123.  
  124. // Weapon Ammo (core)
  125.  
  126. "ammotype" "ammo_357sig"
  127. "ammoprice" "100"
  128.  
  129. // Knockback (module)
  130.  
  131. "knockback" "1.6"
  132.  
  133. // ZMarket (module)
  134.  
  135. "zmarketprice" "500"
  136.  
  137. }
  138.  
  139. "Desert Eagle"
  140. {
  141. // General
  142.  
  143. "weaponentity" "weapon_deagle"
  144. "weapontype" "All, Pistol"
  145. "weaponslot" "1"
  146.  
  147. // Restrict (core)
  148.  
  149. "restrictdefault" "no"
  150. "toggleable" "yes"
  151.  
  152. // Weapon Ammo (core)
  153.  
  154. "ammotype" "ammo_50ae"
  155. "ammoprice" "100"
  156.  
  157. // Knockback (module)
  158.  
  159. "knockback" "2.0"
  160.  
  161. // ZMarket (module)
  162.  
  163. "zmarketprice" "1000"
  164.  
  165. }
  166.  
  167. "Elite"
  168. {
  169. // General
  170.  
  171. "weaponentity" "weapon_elite"
  172. "weapontype" "All, Pistol"
  173. "weaponslot" "1"
  174.  
  175. // Restrict (core)
  176.  
  177. "restrictdefault" "no"
  178. "toggleable" "yes"
  179.  
  180. // Weapon Ammo (core)
  181.  
  182. "ammotype" "ammo_9mm"
  183. "ammoprice" "100"
  184.  
  185. // Knockback (module)
  186.  
  187. "knockback" "1.6"
  188.  
  189. // ZMarket (module)
  190.  
  191. "zmarketprice" "700"
  192.  
  193. }
  194.  
  195. "Fiveseven"
  196. {
  197. // General
  198.  
  199. "weaponentity" "weapon_fiveseven"
  200. "weapontype" "All, Pistol"
  201. "weaponslot" "1"
  202.  
  203. // Restrict (core)
  204.  
  205. "restrictdefault" "no"
  206. "toggleable" "yes"
  207.  
  208. // Weapon Ammo (core)
  209.  
  210. "ammotype" "ammo_57mm"
  211. "ammoprice" "100"
  212.  
  213. // Knockback (module)
  214.  
  215. "knockback" "1.6"
  216.  
  217. // ZMarket (module)
  218.  
  219. "zmarketprice" "650"
  220.  
  221. }
  222.  
  223. "Tec-9"
  224. {
  225. // General
  226.  
  227. "weaponentity" "weapon_tec9"
  228. "weapontype" "All, Pistol"
  229. "weaponslot" "1"
  230.  
  231. // Restrict (core)
  232.  
  233. "restrictdefault" "no"
  234. "toggleable" "yes"
  235.  
  236. // Weapon Ammo (core)
  237.  
  238. "ammotype" "ammo_9mm"
  239. "ammoprice" "100"
  240.  
  241. // Knockback (module)
  242.  
  243. "knockback" "1.6"
  244.  
  245. // ZMarket (module)
  246.  
  247. "zmarketprice" "700"
  248.  
  249. }
  250.  
  251. "MAG-7"
  252.  
  253. {
  254. // General
  255.  
  256. "weaponentity" "weapon_mag7"
  257.  
  258. "weapontype" "All, Shotgun"
  259. "weaponslot" "0"
  260.  
  261. // Restrict (core)
  262.  
  263. "restrictdefault" "no"
  264. "toggleable" "yes"
  265.  
  266. // Weapon Ammo (core)
  267.  
  268. "ammotype" "ammo_buckshot"
  269. "ammoprice" "300"
  270.  
  271. // Knockback (module)
  272.  
  273. "knockback" "3.0" // Remember that there are 8 pellets in 1 shot.
  274.  
  275. // ZMarket (module)
  276.  
  277. "zmarketprice" "1700"
  278.  
  279. }
  280.  
  281. "Sawedoff"
  282. {
  283. // General
  284.  
  285. "weaponentity" "weapon_sawedoff"
  286.  
  287. "weapontype" "All, Shotgun"
  288. "weaponslot" "0"
  289.  
  290. // Restrict (core)
  291.  
  292. "restrictdefault" "no"
  293. "toggleable" "yes"
  294.  
  295. // Weapon Ammo (core)
  296.  
  297. "ammotype" "ammo_buckshot"
  298. "ammoprice" "300"
  299.  
  300. // Knockback (module)
  301.  
  302. "knockback" "4.0" // Remember that there are 8 pellets in 1 shot.
  303.  
  304. // ZMarket (module)
  305.  
  306. "zmarketprice" "1200"
  307.  
  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" "5.0" // Remember that there are 8 pellets in 1 shot.
  331.  
  332. // ZMarket (module)
  333.  
  334. "zmarketprice" "2000"
  335.  
  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" "0.5" // Remember that there are 8 pellets in 1 shot.
  359.  
  360. // ZMarket (module)
  361.  
  362. "zmarketprice" "1500"
  363.  
  364. }
  365.  
  366. "Mac10"
  367. {
  368. // General
  369.  
  370. "weaponentity" "weapon_mac10"
  371. "weapontype" "All, SMG"
  372. "weaponslot" "0"
  373.  
  374. // Restrict (core)
  375.  
  376. "restrictdefault" "no"
  377. "toggleable" "yes"
  378.  
  379. // Weapon Ammo (core)
  380.  
  381. "ammotype" "ammo_45acp"
  382. "ammoprice" "300"
  383.  
  384. // Knockback (module)
  385.  
  386. "knockback" "1.0"
  387.  
  388. // ZMarket (module)
  389.  
  390. "zmarketprice" "1200"
  391. }
  392.  
  393. "MP9"
  394. {
  395. // General
  396.  
  397. "weaponentity" "weapon_mp9"
  398. "weapontype" "All, SMG"
  399. "weaponslot" "0"
  400.  
  401. // Restrict (core)
  402.  
  403. "restrictdefault" "no"
  404. "toggleable" "yes"
  405.  
  406. // Weapon Ammo (core)
  407.  
  408. "ammotype" "ammo_9mm"
  409. "ammoprice" "300"
  410.  
  411. // Knockback (module)
  412.  
  413. "knockback" "1.0"
  414.  
  415. // ZMarket (module)
  416.  
  417. "zmarketprice" "1250"
  418. }
  419.  
  420. "Bizon"
  421. {
  422. // General
  423.  
  424. "weaponentity" "weapon_bizon"
  425. "weapontype" "All, SMG"
  426. "weaponslot" "0"
  427.  
  428. // Restrict (core)
  429.  
  430. "restrictdefault" "no"
  431. "toggleable" "yes"
  432.  
  433. // Weapon Ammo (core)
  434.  
  435. "ammotype" "ammo_9mm"
  436. "ammoprice" "100"
  437.  
  438. // Knockback (module)
  439.  
  440. "knockback" "1.0"
  441.  
  442. // ZMarket (module)
  443.  
  444. "zmarketprice" "1400"
  445. }
  446.  
  447.  
  448. "MP7"
  449. {
  450. // General
  451.  
  452. "weaponentity" "weapon_mp7"
  453. "weapontype" "All, SMG"
  454. "weaponslot" "0"
  455.  
  456. // Restrict (core)
  457.  
  458. "restrictdefault" "no"
  459. "toggleable" "yes"
  460.  
  461. // Weapon Ammo (core)
  462.  
  463. "ammotype" "ammo_9mm"
  464. "ammoprice" "300"
  465.  
  466. // Knockback (module)
  467.  
  468. "knockback" "1.0"
  469.  
  470. // ZMarket (module)
  471.  
  472. "zmarketprice" "1700"
  473. }
  474.  
  475. "UMP45"
  476. {
  477. // General
  478.  
  479. "weaponentity" "weapon_ump45"
  480. "weapontype" "All, SMG"
  481. "weaponslot" "0"
  482.  
  483. // Restrict (core)
  484.  
  485. "restrictdefault" "no"
  486. "toggleable" "yes"
  487.  
  488. // Weapon Ammo (core)
  489.  
  490. "ammotype" "ammo_45acp"
  491. "ammoprice" "300"
  492.  
  493. // Knockback (module)
  494.  
  495. "knockback" "1.0"
  496.  
  497. // ZMarket (module)
  498.  
  499. "zmarketprice" "1500"
  500. }
  501.  
  502. "P90"
  503. {
  504. // General
  505.  
  506. "weaponentity" "weapon_p90"
  507. "weapontype" "All, SMG"
  508. "weaponslot" "0"
  509.  
  510. // Restrict (core)
  511.  
  512. "restrictdefault" "no"
  513. "toggleable" "yes"
  514.  
  515. // Weapon Ammo (core)
  516.  
  517. "ammotype" "ammo_57mm"
  518. "ammoprice" "300"
  519.  
  520. // Knockback (module)
  521.  
  522. "knockback" "1.0"
  523.  
  524. // ZMarket (module)
  525.  
  526. "zmarketprice" "2350"
  527. }
  528.  
  529. "Galil"
  530. {
  531. // General
  532.  
  533. "weaponentity" "weapon_galilar"
  534. "weapontype" "All, Rifle"
  535. "weaponslot" "0"
  536.  
  537. // Restrict (core)
  538.  
  539. "restrictdefault" "no"
  540. "toggleable" "yes"
  541.  
  542. // Weapon Ammo (core)
  543.  
  544. "ammotype" "ammo_556mm"
  545. "ammoprice" "500"
  546.  
  547. // Knockback (module)
  548.  
  549. "knockback" "0.9"
  550.  
  551. // ZMarket (module)
  552.  
  553. "zmarketprice" "2000"
  554. }
  555.  
  556. "Famas"
  557. {
  558. // General
  559.  
  560. "weaponentity" "weapon_famas"
  561. "weapontype" "All, Rifle"
  562. "weaponslot" "0"
  563.  
  564. // Restrict (core)
  565.  
  566. "restrictdefault" "no"
  567. "toggleable" "yes"
  568.  
  569. // Weapon Ammo (core)
  570.  
  571. "ammotype" "ammo_556mm"
  572. "ammoprice" "500"
  573.  
  574. // Knockback (module)
  575.  
  576. "knockback" "0.9"
  577.  
  578. // ZMarket (module)
  579.  
  580. "zmarketprice" "2250"
  581. }
  582.  
  583. "AK47"
  584. {
  585. // General
  586.  
  587. "weaponentity" "weapon_ak47"
  588. "weapontype" "All, Rifle"
  589. "weaponslot" "0"
  590.  
  591. // Restrict (core)
  592.  
  593. "restrictdefault" "no"
  594. "toggleable" "yes"
  595.  
  596. // Weapon Ammo (core)
  597.  
  598. "ammotype" "ammo_762mm"
  599. "ammoprice" "500"
  600.  
  601. // Knockback (module)
  602.  
  603. "knockback" "0.9"
  604.  
  605. // ZMarket (module)
  606.  
  607. "zmarketprice" "2500"
  608. }
  609.  
  610. "M4A1"
  611. {
  612. // General
  613.  
  614. "weaponentity" "weapon_m4a1"
  615. "weapontype" "All, Rifle"
  616. "weaponslot" "0"
  617.  
  618. // Restrict (core)
  619.  
  620. "restrictdefault" "no"
  621. "toggleable" "yes"
  622.  
  623. // Weapon Ammo (core)
  624.  
  625. "ammotype" "ammo_556mm"
  626. "ammoprice" "500"
  627.  
  628. // Knockback (module)
  629.  
  630. "knockback" "0.9"
  631.  
  632. // ZMarket (module)
  633.  
  634. "zmarketprice" "3100"
  635. }
  636.  
  637. "M4A1 Silencer"
  638. {
  639. // General
  640.  
  641. "weaponentity" "weapon_m4a1_silencer "
  642. "weapontype" "All, Rifle"
  643. "weaponslot" "0"
  644.  
  645. // Restrict (core)
  646.  
  647. "restrictdefault" "no"
  648. "toggleable" "yes"
  649.  
  650. // Weapon Ammo (core)
  651.  
  652. "ammotype" "ammo_556mm"
  653. "ammoprice" "500"
  654.  
  655. // Knockback (module)
  656.  
  657. "knockback" "0.9"
  658.  
  659. // ZMarket (module)
  660.  
  661. "zmarketprice" "3100"
  662. }
  663.  
  664. "SG556"
  665. {
  666. // General
  667.  
  668. "weaponentity" "weapon_sg556"
  669. "weapontype" "All, Sniper"
  670. "weaponslot" "0"
  671.  
  672. // Restrict (core)
  673.  
  674. "restrictdefault" "no"
  675. "toggleable" "yes"
  676.  
  677. // Weapon Ammo (core)
  678.  
  679. "ammotype" "ammo_556mm"
  680. "ammoprice" "500"
  681.  
  682. // Knockback (module)
  683.  
  684. "knockback" "2.0"
  685.  
  686. // ZMarket (module)
  687.  
  688. "zmarketprice" "3500"
  689. }
  690.  
  691. "AUG"
  692. {
  693. // General
  694.  
  695. "weaponentity" "weapon_aug"
  696. "weapontype" "All, Rifle"
  697. "weaponslot" "0"
  698.  
  699. // Restrict (core)
  700.  
  701. "restrictdefault" "no"
  702. "toggleable" "yes"
  703.  
  704. // Weapon Ammo (core)
  705.  
  706. "ammotype" "ammo_762mm"
  707. "ammoprice" "500"
  708.  
  709. // Knockback (module)
  710.  
  711. "knockback" "0.9"
  712.  
  713. // ZMarket (module)
  714.  
  715. "zmarketprice" "3500"
  716. }
  717.  
  718. "SSG08"
  719. {
  720. // General
  721.  
  722. "weaponentity" "weapon_ssg08"
  723. "weapontype" "All, Rifle"
  724. "weaponslot" "0"
  725.  
  726. // Restrict (core)
  727.  
  728. "restrictdefault" "no"
  729. "toggleable" "yes"
  730.  
  731. // Weapon Ammo (core)
  732.  
  733. "ammotype" "ammo_762mm"
  734. "ammoprice" "750"
  735.  
  736. // Knockback (module)
  737.  
  738. "knockback" "0.9"
  739.  
  740. // ZMarket (module)
  741.  
  742. "zmarketprice" "2750"
  743. }
  744.  
  745. "SCAR-20"
  746. {
  747. // General
  748.  
  749. "weaponentity" "weapon_scar20"
  750. "weapontype" "All, Sniper"
  751. "weaponslot" "0"
  752.  
  753. // Restrict (core)
  754.  
  755. "restrictdefault" "no"
  756. "toggleable" "yes"
  757.  
  758. // Weapon Ammo (core)
  759.  
  760. "ammotype" "ammo_762mm"
  761. "ammoprice" "1000"
  762.  
  763. // Knockback (module)
  764.  
  765. "knockback" "0.7"
  766.  
  767. // ZMarket (module)
  768.  
  769. "zmarketprice" "4200"
  770. }
  771.  
  772. "G3SG1"
  773. {
  774. // General
  775.  
  776. "weaponentity" "weapon_g3sg1"
  777. "weapontype" "All, Sniper"
  778. "weaponslot" "0"
  779.  
  780. // Restrict (core)
  781.  
  782. "restrictdefault" "no"
  783. "toggleable" "yes"
  784.  
  785. // Weapon Ammo (core)
  786.  
  787. "ammotype" "ammo_762mm"
  788. "ammoprice" "1000"
  789.  
  790. // Knockback (module)
  791.  
  792. "knockback" "0.7"
  793.  
  794. // ZMarket (module)
  795.  
  796. "zmarketprice" "5000"
  797. }
  798.  
  799. "AWP"
  800. {
  801. // General
  802.  
  803. "weaponentity" "weapon_awp"
  804. "weapontype" "All, Sniper"
  805. "weaponslot" "0"
  806.  
  807. // Restrict (core)
  808.  
  809. "restrictdefault" "no"
  810. "toggleable" "yes"
  811.  
  812. // Weapon Ammo (core)
  813.  
  814. "ammotype" "ammo_338mag"
  815. "ammoprice" "1000"
  816.  
  817. // Knockback (module)
  818.  
  819. "knockback" "3.0"
  820.  
  821. // ZMarket (module)
  822.  
  823. "zmarketprice" "4750"
  824. }
  825.  
  826. "M249"
  827. {
  828. // General
  829.  
  830. "weaponentity" "weapon_m249"
  831. "weapontype" "All, Machine Gun"
  832. "weaponslot" "0"
  833.  
  834. // Restrict (core)
  835.  
  836. "restrictdefault" "no"
  837. "toggleable" "yes"
  838.  
  839. // Weapon Ammo (core)
  840.  
  841. "ammotype" "ammo_556mm_box"
  842. "ammoprice" "1500"
  843.  
  844. // Knockback (module)
  845.  
  846. "knockback" "0.8"
  847.  
  848. // ZMarket (module)
  849.  
  850. "zmarketprice" "5750"
  851. }
  852.  
  853. "Negev"
  854. {
  855. // General
  856.  
  857. "weaponentity" "weapon_negev"
  858. "weapontype" "All, Machine Gun"
  859. "weaponslot" "0"
  860.  
  861. // Restrict (core)
  862.  
  863. "restrictdefault" "no"
  864. "toggleable" "yes"
  865.  
  866. // Weapon Ammo (core)
  867.  
  868. "ammotype" "ammo_556mm_box"
  869. "ammoprice" "1500"
  870.  
  871. // Knockback (module)
  872.  
  873. "knockback" "0.7"
  874.  
  875. // ZMarket (module)
  876.  
  877. "zmarketprice" "5750"
  878. }
  879.  
  880. "Knife"
  881. {
  882. // General
  883.  
  884. "weaponentity" "weapon_knife"
  885. "weapontype" "All, Melee"
  886. "weaponslot" "2"
  887.  
  888. // Restrict (core)
  889.  
  890. "restrictdefault" "no"
  891. "toggleable" "no"
  892.  
  893. // Knockback (module)
  894.  
  895. "knockback" "1.0"
  896. }
  897.  
  898. "Gold Knife"
  899. {
  900. // General
  901.  
  902. "weaponentity" "weapon_knifegg"
  903. "weapontype" "All, Melee"
  904. "weaponslot" "2"
  905.  
  906. // Restrict (core)
  907.  
  908. "restrictdefault" "no"
  909. "toggleable" "no"
  910.  
  911. // Knockback (module)
  912.  
  913. "knockback" "10.0"
  914. }
  915.  
  916. "Bayonet"
  917. {
  918. // General
  919.  
  920. "weaponentity" "weapon_bayonet"
  921. "weapontype" "All, Melee"
  922. "weaponslot" "2"
  923.  
  924. // Restrict (core)
  925.  
  926. "restrictdefault" "no"
  927. "toggleable" "no"
  928.  
  929. // Knockback (module)
  930.  
  931. "knockback" "10.0"
  932. }
  933.  
  934. "Flip Knife"
  935. {
  936. // General
  937.  
  938. "weaponentity" "weapon_knife_flip"
  939. "weapontype" "All, Melee"
  940. "weaponslot" "2"
  941.  
  942. // Restrict (core)
  943.  
  944. "restrictdefault" "no"
  945. "toggleable" "no"
  946.  
  947. // Knockback (module)
  948.  
  949. "knockback" "10.0"
  950. }
  951.  
  952. "Gut Knife"
  953. {
  954. // General
  955.  
  956. "weaponentity" "weapon_knife_gut"
  957. "weapontype" "All, Melee"
  958. "weaponslot" "2"
  959.  
  960. // Restrict (core)
  961.  
  962. "restrictdefault" "no"
  963. "toggleable" "no"
  964.  
  965. // Knockback (module)
  966.  
  967. "knockback" "10.0"
  968. }
  969.  
  970. "Karambit"
  971. {
  972. // General
  973.  
  974. "weaponentity" "weapon_knife_karambit"
  975. "weapontype" "All, Melee"
  976. "weaponslot" "2"
  977.  
  978. // Restrict (core)
  979.  
  980. "restrictdefault" "no"
  981. "toggleable" "no"
  982.  
  983. // Knockback (module)
  984.  
  985. "knockback" "10.0"
  986. }
  987.  
  988. "IncGrenade"
  989. {
  990. // General
  991.  
  992. "weaponentity" "weapon_incgrenade"
  993. "weapontype" "All, Fire Grenade"
  994. "weaponslot" "4"
  995.  
  996. // Restrict (core)
  997.  
  998. "restrictdefault" "no"
  999. "toggleable" "yes"
  1000.  
  1001. // Knockback (module)
  1002.  
  1003. "knockback" "10.0"
  1004.  
  1005. // ZMarket (module)
  1006.  
  1007. "zmarketprice" "850"
  1008. "zmarketpurchasemax" "1"
  1009. }
  1010.  
  1011. "HEGrenade"
  1012. {
  1013. // General
  1014.  
  1015. "weaponentity" "weapon_hegrenade"
  1016. "weapontype" "All, Grenades"
  1017. "weaponslot" "3"
  1018.  
  1019. // Restrict (core)
  1020.  
  1021. "restrictdefault" "no"
  1022. "toggleable" "yes"
  1023.  
  1024. // Knockback (module)
  1025.  
  1026. "knockback" "1.0"
  1027.  
  1028. // ZMarket (module)
  1029.  
  1030. "zmarketprice" "300"
  1031. "zmarketpurchasemax" "1"
  1032. }
  1033.  
  1034. "Molotov"
  1035. {
  1036. // General
  1037.  
  1038. "weaponentity" "weapon_molotov"
  1039. "weapontype" "All, Fire Grenade"
  1040. "weaponslot" "4"
  1041.  
  1042. // Restrict (core)
  1043.  
  1044. "restrictdefault" "no"
  1045. "toggleable" "yes"
  1046.  
  1047. // Knockback (module)
  1048.  
  1049. "knockback" "10.0"
  1050.  
  1051. // ZMarket (module)
  1052.  
  1053. "zmarketprice" "850"
  1054. "zmarketpurchasemax" "1"
  1055. }
  1056.  
  1057. "Decoy"
  1058. {
  1059. // General
  1060.  
  1061. "weaponentity" "weapon_decoy"
  1062. "weapontype" "All, Decoy"
  1063. "weaponslot" "5"
  1064.  
  1065. // Restrict (core)
  1066.  
  1067. "restrictdefault" "no"
  1068. "toggleable" "yes"
  1069.  
  1070. // ZMarket (module)
  1071.  
  1072. "zmarketprice" "200"
  1073. "zmarketpurchasemax" "10"
  1074. }
  1075.  
  1076. "Flashbang"
  1077. {
  1078. // General
  1079.  
  1080. "weaponentity" "weapon_flashbang"
  1081. "weapontype" "All, Grenades"
  1082. "weaponslot" "3"
  1083.  
  1084. // Restrict (core)
  1085.  
  1086. "restrictdefault" "yes"
  1087. "toggleable" "yes"
  1088.  
  1089. // ZMarket (module)
  1090.  
  1091. "zmarketprice" "200"
  1092. "zmarketpurchasemax" "1"
  1093. }
  1094.  
  1095. "Smokegrenade"
  1096. {
  1097. // General
  1098.  
  1099. "weaponentity" "weapon_smokegrenade"
  1100. "weapontype" "All, Grenades"
  1101. "weaponslot" "3"
  1102.  
  1103. // Restrict (core)
  1104.  
  1105. "restrictdefault" "no"
  1106. "toggleable" "yes"
  1107.  
  1108. // ZMarket (module)
  1109.  
  1110. "zmarketprice" "300"
  1111. "zmarketpurchasemax" "1"
  1112. }
  1113.  
  1114. "NVGs"
  1115. {
  1116. // General
  1117.  
  1118. "weaponentity" "item_nvgs"
  1119. "weapontype" "All, Equipment"
  1120. "weaponslot" "5"
  1121.  
  1122. // Restrict (core)
  1123.  
  1124. "restrictdefault" "yes"
  1125. "toggleable" "yes"
  1126.  
  1127. // ZMarket (module)
  1128.  
  1129. "zmarketprice" "1000"
  1130. }
  1131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement