Advertisement
Guest User

Untitled

a guest
May 19th, 2014
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.48 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.1"
  51.  
  52. // ZMarket (module)
  53.  
  54. "zmarketprice" "400"
  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.1"
  78.  
  79. // ZMarket (module)
  80.  
  81. "zmarketprice" "300"
  82. }
  83.  
  84.  
  85. "P250"
  86. {
  87. // General
  88.  
  89. "weaponentity" "weapon_p250"
  90. "weapontype" "All, Pistol"
  91. "weaponslot" "1"
  92.  
  93. // Restrict (core)
  94.  
  95. "restrictdefault" "no"
  96. "toggleable" "yes"
  97.  
  98. // Weapon Ammo (core)
  99.  
  100. "ammotype" "ammo_357sig"
  101. "ammoprice" "100"
  102.  
  103. // Knockback (module)
  104.  
  105. "knockback" "1.1"
  106.  
  107. // ZMarket (module)
  108.  
  109. "zmarketprice" "500"
  110.  
  111. }
  112.  
  113. "Deagle"
  114. {
  115. // General
  116.  
  117. "weaponentity" "weapon_deagle"
  118. "weapontype" "All, Pistol"
  119. "weaponslot" "1"
  120.  
  121. // Restrict (core)
  122.  
  123. "restrictdefault" "no"
  124. "toggleable" "yes"
  125.  
  126. // Weapon Ammo (core)
  127.  
  128. "ammotype" "ammo_50ae"
  129. "ammoprice" "100"
  130.  
  131. // Knockback (module)
  132.  
  133. "knockback" "1.1"
  134.  
  135. // ZMarket (module)
  136.  
  137. "zmarketprice" "650"
  138.  
  139. }
  140.  
  141. "Elite"
  142. {
  143. // General
  144.  
  145. "weaponentity" "weapon_elite"
  146. "weapontype" "All, Pistol"
  147. "weaponslot" "1"
  148.  
  149. // Restrict (core)
  150.  
  151. "restrictdefault" "no"
  152. "toggleable" "yes"
  153.  
  154. // Weapon Ammo (core)
  155.  
  156. "ammotype" "ammo_9mm"
  157. "ammoprice" "100"
  158.  
  159. // Knockback (module)
  160.  
  161. "knockback" "1.0"
  162.  
  163. // ZMarket (module)
  164.  
  165. "zmarketprice" "800"
  166.  
  167. }
  168.  
  169. "Fiveseven"
  170. {
  171. // General
  172.  
  173. "weaponentity" "weapon_fiveseven"
  174. "weapontype" "All, Pistol"
  175. "weaponslot" "1"
  176.  
  177. // Restrict (core)
  178.  
  179. "restrictdefault" "no"
  180. "toggleable" "yes"
  181.  
  182. // Weapon Ammo (core)
  183.  
  184. "ammotype" "ammo_57mm"
  185. "ammoprice" "100"
  186.  
  187. // Knockback (module)
  188.  
  189. "knockback" "1.1"
  190.  
  191. // ZMarket (module)
  192.  
  193. "zmarketprice" "750"
  194.  
  195. }
  196.  
  197. "Nova"
  198. {
  199. // General
  200.  
  201. "weaponentity" "weapon_nova"
  202. "weapontype" "All, Shotgun"
  203. "weaponslot" "0"
  204.  
  205. // Restrict (core)
  206.  
  207. "restrictdefault" "no"
  208. "toggleable" "yes"
  209.  
  210. // Weapon Ammo (core)
  211.  
  212. "ammotype" "ammo_buckshot"
  213. "ammoprice" "300"
  214.  
  215. // Knockback (module)
  216.  
  217. "knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
  218.  
  219. // ZMarket (module)
  220.  
  221. "zmarketprice" "1500"
  222.  
  223. }
  224.  
  225. "XM1014"
  226. {
  227. // General
  228.  
  229. "weaponentity" "weapon_xm1014"
  230. "weapontype" "All, Shotgun"
  231. "weaponslot" "0"
  232.  
  233. // Restrict (core)
  234.  
  235. "restrictdefault" "no"
  236. "toggleable" "yes"
  237.  
  238. // Weapon Ammo (core)
  239.  
  240. "ammotype" "ammo_buckshot"
  241. "ammoprice" "300"
  242.  
  243. // Knockback (module)
  244.  
  245. "knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
  246.  
  247. // ZMarket (module)
  248.  
  249. "zmarketprice" "3000"
  250.  
  251. }
  252.  
  253. "Sawed-Off"
  254. {
  255. // General
  256.  
  257. "weaponentity" "weapon_sawedoff"
  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" "0.8" // Remember that there are 8 pellets in 1 shot.
  274.  
  275. // ZMarket (module)
  276.  
  277. "zmarketprice" "1500"
  278.  
  279. }
  280.  
  281. "Mag-7"
  282. {
  283. // General
  284.  
  285. "weaponentity" "weapon_mag7"
  286. "weapontype" "All, Shotgun"
  287. "weaponslot" "0"
  288.  
  289. // Restrict (core)
  290.  
  291. "restrictdefault" "no"
  292. "toggleable" "yes"
  293.  
  294. // Weapon Ammo (core)
  295.  
  296. "ammotype" "ammo_buckshot"
  297. "ammoprice" "300"
  298.  
  299. // Knockback (module)
  300.  
  301. "knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
  302.  
  303. // ZMarket (module)
  304.  
  305. "zmarketprice" "2000"
  306.  
  307. }
  308.  
  309. "Mac10"
  310. {
  311. // General
  312.  
  313. "weaponentity" "weapon_mac10"
  314. "weapontype" "All, SMG"
  315. "weaponslot" "0"
  316.  
  317. // Restrict (core)
  318.  
  319. "restrictdefault" "no"
  320. "toggleable" "yes"
  321.  
  322. // Weapon Ammo (core)
  323.  
  324. "ammotype" "ammo_45acp"
  325. "ammoprice" "300"
  326.  
  327. // Knockback (module)
  328.  
  329. "knockback" "1.0"
  330.  
  331. // ZMarket (module)
  332.  
  333. "zmarketprice" "1400"
  334. }
  335.  
  336. "MP9"
  337. {
  338. // General
  339.  
  340. "weaponentity" "weapon_mp9"
  341. "weapontype" "All, SMG"
  342. "weaponslot" "0"
  343.  
  344. // Restrict (core)
  345.  
  346. "restrictdefault" "no"
  347. "toggleable" "yes"
  348.  
  349. // Weapon Ammo (core)
  350.  
  351. "ammotype" "ammo_9mm"
  352. "ammoprice" "300"
  353.  
  354. // Knockback (module)
  355.  
  356. "knockback" "1.0"
  357.  
  358. // ZMarket (module)
  359.  
  360. "zmarketprice" "1250"
  361. }
  362.  
  363. "Bizon"
  364. {
  365. // General
  366.  
  367. "weaponentity" "weapon_bizon"
  368. "weapontype" "All, SMG"
  369. "weaponslot" "0"
  370.  
  371. // Restrict (core)
  372.  
  373. "restrictdefault" "no"
  374. "toggleable" "yes"
  375.  
  376. // Weapon Ammo (core)
  377.  
  378. "ammotype" "ammo_9mm"
  379. "ammoprice" "100"
  380.  
  381. // Knockback (module)
  382.  
  383. "knockback" "1.0"
  384.  
  385. // ZMarket (module)
  386.  
  387. "zmarketprice" "1400"
  388. }
  389.  
  390.  
  391. "MP7"
  392. {
  393. // General
  394.  
  395. "weaponentity" "weapon_mp7"
  396. "weapontype" "All, SMG"
  397. "weaponslot" "0"
  398.  
  399. // Restrict (core)
  400.  
  401. "restrictdefault" "no"
  402. "toggleable" "yes"
  403.  
  404. // Weapon Ammo (core)
  405.  
  406. "ammotype" "ammo_9mm"
  407. "ammoprice" "300"
  408.  
  409. // Knockback (module)
  410.  
  411. "knockback" "1.0"
  412.  
  413. // ZMarket (module)
  414.  
  415. "zmarketprice" "1700"
  416. }
  417.  
  418. "UMP45"
  419. {
  420. // General
  421.  
  422. "weaponentity" "weapon_ump45"
  423. "weapontype" "All, SMG"
  424. "weaponslot" "0"
  425.  
  426. // Restrict (core)
  427.  
  428. "restrictdefault" "no"
  429. "toggleable" "yes"
  430.  
  431. // Weapon Ammo (core)
  432.  
  433. "ammotype" "ammo_45acp"
  434. "ammoprice" "300"
  435.  
  436. // Knockback (module)
  437.  
  438. "knockback" "1.0"
  439.  
  440. // ZMarket (module)
  441.  
  442. "zmarketprice" "1700"
  443. }
  444.  
  445. "P90"
  446. {
  447. // General
  448.  
  449. "weaponentity" "weapon_p90"
  450. "weapontype" "All, SMG"
  451. "weaponslot" "0"
  452.  
  453. // Restrict (core)
  454.  
  455. "restrictdefault" "no"
  456. "toggleable" "yes"
  457.  
  458. // Weapon Ammo (core)
  459.  
  460. "ammotype" "ammo_57mm"
  461. "ammoprice" "300"
  462.  
  463. // Knockback (module)
  464.  
  465. "knockback" "1.0"
  466.  
  467. // ZMarket (module)
  468.  
  469. "zmarketprice" "2350"
  470. }
  471.  
  472. "Galil AR"
  473. {
  474. // General
  475.  
  476. "weaponentity" "weapon_galilar"
  477. "weapontype" "All, Rifle"
  478. "weaponslot" "0"
  479.  
  480. // Restrict (core)
  481.  
  482. "restrictdefault" "no"
  483. "toggleable" "yes"
  484.  
  485. // Weapon Ammo (core)
  486.  
  487. "ammotype" "ammo_556mm"
  488. "ammoprice" "500"
  489.  
  490. // Knockback (module)
  491.  
  492. "knockback" "1.0"
  493.  
  494. // ZMarket (module)
  495.  
  496. "zmarketprice" "2000"
  497. }
  498.  
  499. "Famas"
  500. {
  501. // General
  502.  
  503. "weaponentity" "weapon_famas"
  504. "weapontype" "All, Rifle"
  505. "weaponslot" "0"
  506.  
  507. // Restrict (core)
  508.  
  509. "restrictdefault" "no"
  510. "toggleable" "yes"
  511.  
  512. // Weapon Ammo (core)
  513.  
  514. "ammotype" "ammo_556mm"
  515. "ammoprice" "500"
  516.  
  517. // Knockback (module)
  518.  
  519. "knockback" "1.0"
  520.  
  521. // ZMarket (module)
  522.  
  523. "zmarketprice" "2250"
  524. }
  525.  
  526. "AK47"
  527. {
  528. // General
  529.  
  530. "weaponentity" "weapon_ak47"
  531. "weapontype" "All, Rifle"
  532. "weaponslot" "0"
  533.  
  534. // Restrict (core)
  535.  
  536. "restrictdefault" "no"
  537. "toggleable" "yes"
  538.  
  539. // Weapon Ammo (core)
  540.  
  541. "ammotype" "ammo_762mm"
  542. "ammoprice" "500"
  543.  
  544. // Knockback (module)
  545.  
  546. "knockback" "1.0"
  547.  
  548. // ZMarket (module)
  549.  
  550. "zmarketprice" "2500"
  551. }
  552.  
  553. "M4A1"
  554. {
  555. // General
  556.  
  557. "weaponentity" "weapon_m4a1"
  558. "weapontype" "All, Rifle"
  559. "weaponslot" "0"
  560.  
  561. // Restrict (core)
  562.  
  563. "restrictdefault" "no"
  564. "toggleable" "yes"
  565.  
  566. // Weapon Ammo (core)
  567.  
  568. "ammotype" "ammo_556mm"
  569. "ammoprice" "500"
  570.  
  571. // Knockback (module)
  572.  
  573. "knockback" "1.0"
  574.  
  575. // ZMarket (module)
  576.  
  577. "zmarketprice" "3100"
  578. }
  579.  
  580. "SG556"
  581. {
  582. // General
  583.  
  584. "weaponentity" "weapon_sg556"
  585. "weapontype" "All, Rifle"
  586. "weaponslot" "0"
  587.  
  588. // Restrict (core)
  589.  
  590. "restrictdefault" "no"
  591. "toggleable" "yes"
  592.  
  593. // Weapon Ammo (core)
  594.  
  595. "ammotype" "ammo_556mm"
  596. "ammoprice" "500"
  597.  
  598. // Knockback (module)
  599.  
  600. "knockback" "1.0"
  601.  
  602. // ZMarket (module)
  603.  
  604. "zmarketprice" "3500"
  605. }
  606.  
  607. "AUG"
  608. {
  609. // General
  610.  
  611. "weaponentity" "weapon_aug"
  612. "weapontype" "All, Rifle"
  613. "weaponslot" "0"
  614.  
  615. // Restrict (core)
  616.  
  617. "restrictdefault" "no"
  618. "toggleable" "yes"
  619.  
  620. // Weapon Ammo (core)
  621.  
  622. "ammotype" "ammo_762mm"
  623. "ammoprice" "500"
  624.  
  625. // Knockback (module)
  626.  
  627. "knockback" "1.0"
  628.  
  629. // ZMarket (module)
  630.  
  631. "zmarketprice" "3500"
  632. }
  633.  
  634. "SSG 08"
  635. {
  636. // General
  637.  
  638. "weaponentity" "weapon_ssg08"
  639. "weapontype" "All, Sniper"
  640. "weaponslot" "0"
  641.  
  642. // Restrict (core)
  643.  
  644. "restrictdefault" "no"
  645. "toggleable" "yes"
  646.  
  647. // Weapon Ammo (core)
  648.  
  649. "ammotype" "ammo_762mm"
  650. "ammoprice" "750"
  651.  
  652. // Knockback (module)
  653.  
  654. "knockback" "1.8"
  655.  
  656. // ZMarket (module)
  657.  
  658. "zmarketprice" "2500"
  659. }
  660.  
  661. "SCAR-20"
  662. {
  663. // General
  664.  
  665. "weaponentity" "weapon_scar20"
  666. "weapontype" "All, Sniper"
  667. "weaponslot" "0"
  668.  
  669. // Restrict (core)
  670.  
  671. "restrictdefault" "no"
  672. "toggleable" "yes"
  673.  
  674. // Weapon Ammo (core)
  675.  
  676. "ammotype" "ammo_556mm"
  677. "ammoprice" "1000"
  678.  
  679. // Knockback (module)
  680.  
  681. "knockback" "0.9"
  682.  
  683. // ZMarket (module)
  684.  
  685. "zmarketprice" "5000"
  686. }
  687.  
  688. "G3SG1"
  689. {
  690. // General
  691.  
  692. "weaponentity" "weapon_g3sg1"
  693. "weapontype" "All, Sniper"
  694. "weaponslot" "0"
  695.  
  696. // Restrict (core)
  697.  
  698. "restrictdefault" "no"
  699. "toggleable" "yes"
  700.  
  701. // Weapon Ammo (core)
  702.  
  703. "ammotype" "ammo_762mm"
  704. "ammoprice" "1000"
  705.  
  706. // Knockback (module)
  707.  
  708. "knockback" "0.9"
  709.  
  710. // ZMarket (module)
  711.  
  712. "zmarketprice" "5000"
  713. }
  714.  
  715. "AWP"
  716. {
  717. // General
  718.  
  719. "weaponentity" "weapon_awp"
  720. "weapontype" "All, Sniper"
  721. "weaponslot" "0"
  722.  
  723. // Restrict (core)
  724.  
  725. "restrictdefault" "no"
  726. "toggleable" "yes"
  727.  
  728. // Weapon Ammo (core)
  729.  
  730. "ammotype" "ammo_338mag"
  731. "ammoprice" "1000"
  732.  
  733. // Knockback (module)
  734.  
  735. "knockback" "1.8"
  736.  
  737. // ZMarket (module)
  738.  
  739. "zmarketprice" "4750"
  740. }
  741.  
  742. "M249"
  743. {
  744. // General
  745.  
  746. "weaponentity" "weapon_m249"
  747. "weapontype" "All, Machine Gun"
  748. "weaponslot" "0"
  749.  
  750. // Restrict (core)
  751.  
  752. "restrictdefault" "no"
  753. "toggleable" "yes"
  754.  
  755. // Weapon Ammo (core)
  756.  
  757. "ammotype" "ammo_556mm_box"
  758. "ammoprice" "1500"
  759.  
  760. // Knockback (module)
  761.  
  762. "knockback" "1.0"
  763.  
  764. // ZMarket (module)
  765.  
  766. "zmarketprice" "5750"
  767. }
  768.  
  769. "Negev"
  770. {
  771. // General
  772.  
  773. "weaponentity" "weapon_negev"
  774. "weapontype" "All, Machine Gun"
  775. "weaponslot" "0"
  776.  
  777. // Restrict (core)
  778.  
  779. "restrictdefault" "no"
  780. "toggleable" "yes"
  781.  
  782. // Weapon Ammo (core)
  783.  
  784. "ammotype" "ammo_556mm_box_max"
  785. "ammoprice" "1500"
  786.  
  787. // Knockback (module)
  788.  
  789. "knockback" "1.0"
  790.  
  791. // ZMarket (module)
  792.  
  793. "zmarketprice" "5750"
  794. }
  795.  
  796. "Knife"
  797. {
  798. // General
  799.  
  800. "weaponentity" "weapon_knife"
  801. "weapontype" "All, Melee"
  802. "weaponslot" "2"
  803.  
  804. // Restrict (core)
  805.  
  806. "restrictdefault" "no"
  807. "toggleable" "no"
  808.  
  809. // Knockback (module)
  810.  
  811. "knockback" "10.0"
  812. }
  813.  
  814. "IncGrenade"
  815. {
  816. // General
  817.  
  818. "weaponentity" "weapon_incgrenade"
  819. "weapontype" "All, Fire Grenade"
  820. "weaponslot" "4"
  821.  
  822. // Restrict (core)
  823.  
  824. "restrictdefault" "no"
  825. "toggleable" "yes"
  826.  
  827. // Knockback (module)
  828.  
  829. "knockback" "6.0"
  830.  
  831. // ZMarket (module)
  832.  
  833. "zmarketprice" "850"
  834. "zmarketpurchasemax" "1"
  835. }
  836.  
  837. "HEGrenade"
  838. {
  839. // General
  840.  
  841. "weaponentity" "weapon_hegrenade"
  842. "weapontype" "All, Grenades"
  843. "weaponslot" "3"
  844.  
  845. // Restrict (core)
  846.  
  847. "restrictdefault" "no"
  848. "toggleable" "yes"
  849.  
  850. // Knockback (module)
  851.  
  852. "knockback" "6.0"
  853.  
  854. // ZMarket (module)
  855.  
  856. "zmarketprice" "300"
  857. "zmarketpurchasemax" "1"
  858. }
  859.  
  860. "Molotov"
  861. {
  862. // General
  863.  
  864. "weaponentity" "weapon_molotov"
  865. "weapontype" "All, Fire Grenade"
  866. "weaponslot" "4"
  867.  
  868. // Restrict (core)
  869.  
  870. "restrictdefault" "no"
  871. "toggleable" "yes"
  872.  
  873. // ZMarket (module)
  874.  
  875. "zmarketprice" "850"
  876. "zmarketpurchasemax" "1"
  877. }
  878.  
  879. "Decoy"
  880. {
  881. // General
  882.  
  883. "weaponentity" "weapon_decoy"
  884. "weapontype" "All, Decoy"
  885. "weaponslot" "5"
  886.  
  887. // Restrict (core)
  888.  
  889. "restrictdefault" "no"
  890. "toggleable" "yes"
  891.  
  892. // ZMarket (module)
  893.  
  894. "zmarketprice" "200"
  895. "zmarketpurchasemax" "1"
  896. }
  897.  
  898. "Flashbang"
  899. {
  900. // General
  901.  
  902. "weaponentity" "weapon_flashbang"
  903. "weapontype" "All, Grenades"
  904. "weaponslot" "3"
  905.  
  906. // Restrict (core)
  907.  
  908. "restrictdefault" "yes"
  909. "toggleable" "yes"
  910.  
  911. // ZMarket (module)
  912.  
  913. "zmarketprice" "200"
  914. "zmarketpurchasemax" "1"
  915. }
  916.  
  917. "Smokegrenade"
  918. {
  919. // General
  920.  
  921. "weaponentity" "weapon_smokegrenade"
  922. "weapontype" "All, Grenades"
  923. "weaponslot" "3"
  924.  
  925. // Restrict (core)
  926.  
  927. "restrictdefault" "yes"
  928. "toggleable" "yes"
  929.  
  930. // ZMarket (module)
  931.  
  932. "zmarketprice" "300"
  933. "zmarketpurchasemax" "1"
  934. }
  935.  
  936. "NVGs"
  937. {
  938. // General
  939.  
  940. "weaponentity" "item_nvgs"
  941. "weapontype" "All, Equipment"
  942. "weaponslot" "6"
  943.  
  944. // Restrict (core)
  945.  
  946. "restrictdefault" "yes"
  947. "toggleable" "yes"
  948.  
  949. // ZMarket (module)
  950.  
  951. "zmarketprice" "1000"
  952. }
  953. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement