Guest User

Untitled

a guest
Sep 24th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.97 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. "USP"
  58. {
  59. // General
  60.  
  61. "weaponentity" "weapon_usp"
  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_45acp"
  73. "ammoprice" "100"
  74.  
  75. // Knockback (module)
  76.  
  77. "knockback" "1.1"
  78.  
  79. // ZMarket (module)
  80.  
  81. "zmarketprice" "500"
  82. }
  83.  
  84. "P228"
  85. {
  86. // General
  87.  
  88. "weaponentity" "weapon_p228"
  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.1"
  105.  
  106. // ZMarket (module)
  107.  
  108. "zmarketprice" "600"
  109.  
  110. }
  111.  
  112. "Deagle"
  113. {
  114. // General
  115.  
  116. "weaponentity" "weapon_deagle"
  117. "weapontype" "All, Pistol"
  118. "weaponslot" "1"
  119.  
  120. // Restrict (core)
  121.  
  122. "restrictdefault" "no"
  123. "toggleable" "yes"
  124.  
  125. // Weapon Ammo (core)
  126.  
  127. "ammotype" "ammo_50ae"
  128. "ammoprice" "100"
  129.  
  130. // Knockback (module)
  131.  
  132. "knockback" "1.1"
  133.  
  134. // ZMarket (module)
  135.  
  136. "zmarketprice" "650"
  137.  
  138. }
  139.  
  140. "Elite"
  141. {
  142. // General
  143.  
  144. "weaponentity" "weapon_elite"
  145. "weapontype" "All, Pistol"
  146. "weaponslot" "1"
  147.  
  148. // Restrict (core)
  149.  
  150. "restrictdefault" "no"
  151. "toggleable" "yes"
  152.  
  153. // Weapon Ammo (core)
  154.  
  155. "ammotype" "ammo_9mm"
  156. "ammoprice" "100"
  157.  
  158. // Knockback (module)
  159.  
  160. "knockback" "1.0"
  161.  
  162. // ZMarket (module)
  163.  
  164. "zmarketprice" "800"
  165.  
  166. }
  167.  
  168. "Fiveseven"
  169. {
  170. // General
  171.  
  172. "weaponentity" "weapon_fiveseven"
  173. "weapontype" "All, Pistol"
  174. "weaponslot" "1"
  175.  
  176. // Restrict (core)
  177.  
  178. "restrictdefault" "no"
  179. "toggleable" "yes"
  180.  
  181. // Weapon Ammo (core)
  182.  
  183. "ammotype" "ammo_57mm"
  184. "ammoprice" "100"
  185.  
  186. // Knockback (module)
  187.  
  188. "knockback" "1.1"
  189.  
  190. // ZMarket (module)
  191.  
  192. "zmarketprice" "750"
  193.  
  194. }
  195.  
  196. "M3"
  197. {
  198. // General
  199.  
  200. "weaponentity" "weapon_m3"
  201. "weapontype" "All, Shotgun"
  202. "weaponslot" "0"
  203.  
  204. // Restrict (core)
  205.  
  206. "restrictdefault" "no"
  207. "toggleable" "yes"
  208.  
  209. // Weapon Ammo (core)
  210.  
  211. "ammotype" "ammo_buckshot"
  212. "ammoprice" "300"
  213.  
  214. // Knockback (module)
  215.  
  216. "knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
  217.  
  218. // ZMarket (module)
  219.  
  220. "zmarketprice" "1700"
  221.  
  222. }
  223.  
  224. "XM1014"
  225. {
  226. // General
  227.  
  228. "weaponentity" "weapon_xm1014"
  229. "weapontype" "All, Shotgun"
  230. "weaponslot" "0"
  231.  
  232. // Restrict (core)
  233.  
  234. "restrictdefault" "no"
  235. "toggleable" "yes"
  236.  
  237. // Weapon Ammo (core)
  238.  
  239. "ammotype" "ammo_buckshot"
  240. "ammoprice" "300"
  241.  
  242. // Knockback (module)
  243.  
  244. "knockback" "0.8" // Remember that there are 8 pellets in 1 shot.
  245.  
  246. // ZMarket (module)
  247.  
  248. "zmarketprice" "3000"
  249.  
  250. }
  251.  
  252. "Mac10"
  253. {
  254. // General
  255.  
  256. "weaponentity" "weapon_mac10"
  257. "weapontype" "All, SMG"
  258. "weaponslot" "0"
  259.  
  260. // Restrict (core)
  261.  
  262. "restrictdefault" "no"
  263. "toggleable" "yes"
  264.  
  265. // Weapon Ammo (core)
  266.  
  267. "ammotype" "ammo_45acp"
  268. "ammoprice" "300"
  269.  
  270. // Knockback (module)
  271.  
  272. "knockback" "1.0"
  273.  
  274. // ZMarket (module)
  275.  
  276. "zmarketprice" "1400"
  277. }
  278.  
  279. "TMP"
  280. {
  281. // General
  282.  
  283. "weaponentity" "weapon_tmp"
  284. "weapontype" "All, SMG"
  285. "weaponslot" "0"
  286.  
  287. // Restrict (core)
  288.  
  289. "restrictdefault" "no"
  290. "toggleable" "yes"
  291.  
  292. // Weapon Ammo (core)
  293.  
  294. "ammotype" "ammo_9mm"
  295. "ammoprice" "300"
  296.  
  297. // Knockback (module)
  298.  
  299. "knockback" "1.0"
  300.  
  301. // ZMarket (module)
  302.  
  303. "zmarketprice" "1250"
  304. }
  305.  
  306. "MP5Navy"
  307. {
  308. // General
  309.  
  310. "weaponentity" "weapon_mp5navy"
  311. "weapontype" "All, SMG"
  312. "weaponslot" "0"
  313.  
  314. // Restrict (core)
  315.  
  316. "restrictdefault" "no"
  317. "toggleable" "yes"
  318.  
  319. // Weapon Ammo (core)
  320.  
  321. "ammotype" "ammo_9mm"
  322. "ammoprice" "300"
  323.  
  324. // Knockback (module)
  325.  
  326. "knockback" "1.0"
  327.  
  328. // ZMarket (module)
  329.  
  330. "zmarketprice" "1500"
  331. }
  332.  
  333. "UMP45"
  334. {
  335. // General
  336.  
  337. "weaponentity" "weapon_ump45"
  338. "weapontype" "All, SMG"
  339. "weaponslot" "0"
  340.  
  341. // Restrict (core)
  342.  
  343. "restrictdefault" "no"
  344. "toggleable" "yes"
  345.  
  346. // Weapon Ammo (core)
  347.  
  348. "ammotype" "ammo_45acp"
  349. "ammoprice" "300"
  350.  
  351. // Knockback (module)
  352.  
  353. "knockback" "1.0"
  354.  
  355. // ZMarket (module)
  356.  
  357. "zmarketprice" "1700"
  358. }
  359.  
  360. "P90"
  361. {
  362. // General
  363.  
  364. "weaponentity" "weapon_p90"
  365. "weapontype" "All, SMG"
  366. "weaponslot" "0"
  367.  
  368. // Restrict (core)
  369.  
  370. "restrictdefault" "no"
  371. "toggleable" "yes"
  372.  
  373. // Weapon Ammo (core)
  374.  
  375. "ammotype" "ammo_57mm"
  376. "ammoprice" "300"
  377.  
  378. // Knockback (module)
  379.  
  380. "knockback" "1.0"
  381.  
  382. // ZMarket (module)
  383.  
  384. "zmarketprice" "2350"
  385. }
  386.  
  387. "Galil"
  388. {
  389. // General
  390.  
  391. "weaponentity" "weapon_galil"
  392. "weapontype" "All, Rifle"
  393. "weaponslot" "0"
  394.  
  395. // Restrict (core)
  396.  
  397. "restrictdefault" "no"
  398. "toggleable" "yes"
  399.  
  400. // Weapon Ammo (core)
  401.  
  402. "ammotype" "ammo_556mm"
  403. "ammoprice" "500"
  404.  
  405. // Knockback (module)
  406.  
  407. "knockback" "1.0"
  408.  
  409. // ZMarket (module)
  410.  
  411. "zmarketprice" "2000"
  412. }
  413.  
  414. "Famas"
  415. {
  416. // General
  417.  
  418. "weaponentity" "weapon_famas"
  419. "weapontype" "All, Rifle"
  420. "weaponslot" "0"
  421.  
  422. // Restrict (core)
  423.  
  424. "restrictdefault" "no"
  425. "toggleable" "yes"
  426.  
  427. // Weapon Ammo (core)
  428.  
  429. "ammotype" "ammo_556mm"
  430. "ammoprice" "500"
  431.  
  432. // Knockback (module)
  433.  
  434. "knockback" "1.0"
  435.  
  436. // ZMarket (module)
  437.  
  438. "zmarketprice" "2250"
  439. }
  440.  
  441. "AK47"
  442. {
  443. // General
  444.  
  445. "weaponentity" "weapon_ak47"
  446. "weapontype" "All, Rifle"
  447. "weaponslot" "0"
  448.  
  449. // Restrict (core)
  450.  
  451. "restrictdefault" "no"
  452. "toggleable" "yes"
  453.  
  454. // Weapon Ammo (core)
  455.  
  456. "ammotype" "ammo_762mm"
  457. "ammoprice" "500"
  458.  
  459. // Knockback (module)
  460.  
  461. "knockback" "1.0"
  462.  
  463. // ZMarket (module)
  464.  
  465. "zmarketprice" "2500"
  466. }
  467.  
  468. "M4A1"
  469. {
  470. // General
  471.  
  472. "weaponentity" "weapon_m4a1"
  473. "weapontype" "All, Rifle"
  474. "weaponslot" "0"
  475.  
  476. // Restrict (core)
  477.  
  478. "restrictdefault" "no"
  479. "toggleable" "yes"
  480.  
  481. // Weapon Ammo (core)
  482.  
  483. "ammotype" "ammo_556mm"
  484. "ammoprice" "500"
  485.  
  486. // Knockback (module)
  487.  
  488. "knockback" "1.0"
  489.  
  490. // ZMarket (module)
  491.  
  492. "zmarketprice" "3100"
  493. }
  494.  
  495. "SG552"
  496. {
  497. // General
  498.  
  499. "weaponentity" "weapon_sg552"
  500. "weapontype" "All, Rifle"
  501. "weaponslot" "0"
  502.  
  503. // Restrict (core)
  504.  
  505. "restrictdefault" "no"
  506. "toggleable" "yes"
  507.  
  508. // Weapon Ammo (core)
  509.  
  510. "ammotype" "ammo_556mm"
  511. "ammoprice" "500"
  512.  
  513. // Knockback (module)
  514.  
  515. "knockback" "1.0"
  516.  
  517. // ZMarket (module)
  518.  
  519. "zmarketprice" "3500"
  520. }
  521.  
  522. "AUG"
  523. {
  524. // General
  525.  
  526. "weaponentity" "weapon_aug"
  527. "weapontype" "All, Rifle"
  528. "weaponslot" "0"
  529.  
  530. // Restrict (core)
  531.  
  532. "restrictdefault" "no"
  533. "toggleable" "yes"
  534.  
  535. // Weapon Ammo (core)
  536.  
  537. "ammotype" "ammo_762mm"
  538. "ammoprice" "500"
  539.  
  540. // Knockback (module)
  541.  
  542. "knockback" "1.0"
  543.  
  544. // ZMarket (module)
  545.  
  546. "zmarketprice" "3500"
  547. }
  548.  
  549. "Scout"
  550. {
  551. // General
  552.  
  553. "weaponentity" "weapon_scout"
  554. "weapontype" "All, Sniper"
  555. "weaponslot" "0"
  556.  
  557. // Restrict (core)
  558.  
  559. "restrictdefault" "no"
  560. "toggleable" "yes"
  561.  
  562. // Weapon Ammo (core)
  563.  
  564. "ammotype" "ammo_762mm"
  565. "ammoprice" "750"
  566.  
  567. // Knockback (module)
  568.  
  569. "knockback" "1.8"
  570.  
  571. // ZMarket (module)
  572.  
  573. "zmarketprice" "2750"
  574. }
  575.  
  576. "SG550"
  577. {
  578. // General
  579.  
  580. "weaponentity" "weapon_sg550"
  581. "weapontype" "All, Sniper"
  582. "weaponslot" "0"
  583.  
  584. // Restrict (core)
  585.  
  586. "restrictdefault" "no"
  587. "toggleable" "yes"
  588.  
  589. // Weapon Ammo (core)
  590.  
  591. "ammotype" "ammo_556mm"
  592. "ammoprice" "1000"
  593.  
  594. // Knockback (module)
  595.  
  596. "knockback" "0.9"
  597.  
  598. // ZMarket (module)
  599.  
  600. "zmarketprice" "4200"
  601. }
  602.  
  603. "G3SG1"
  604. {
  605. // General
  606.  
  607. "weaponentity" "weapon_g3sg1"
  608. "weapontype" "All, Sniper"
  609. "weaponslot" "0"
  610.  
  611. // Restrict (core)
  612.  
  613. "restrictdefault" "no"
  614. "toggleable" "yes"
  615.  
  616. // Weapon Ammo (core)
  617.  
  618. "ammotype" "ammo_762mm"
  619. "ammoprice" "1000"
  620.  
  621. // Knockback (module)
  622.  
  623. "knockback" "0.9"
  624.  
  625. // ZMarket (module)
  626.  
  627. "zmarketprice" "5000"
  628. }
  629.  
  630. "AWP"
  631. {
  632. // General
  633.  
  634. "weaponentity" "weapon_awp"
  635. "weapontype" "All, Sniper"
  636. "weaponslot" "0"
  637.  
  638. // Restrict (core)
  639.  
  640. "restrictdefault" "no"
  641. "toggleable" "yes"
  642.  
  643. // Weapon Ammo (core)
  644.  
  645. "ammotype" "ammo_338mag"
  646. "ammoprice" "1000"
  647.  
  648. // Knockback (module)
  649.  
  650. "knockback" "1.8"
  651.  
  652. // ZMarket (module)
  653.  
  654. "zmarketprice" "4750"
  655. }
  656.  
  657. "M249"
  658. {
  659. // General
  660.  
  661. "weaponentity" "weapon_m249"
  662. "weapontype" "All, Machine Gun"
  663. "weaponslot" "0"
  664.  
  665. // Restrict (core)
  666.  
  667. "restrictdefault" "no"
  668. "toggleable" "yes"
  669.  
  670. // Weapon Ammo (core)
  671.  
  672. "ammotype" "ammo_556mm_box"
  673. "ammoprice" "1500"
  674.  
  675. // Knockback (module)
  676.  
  677. "knockback" "1.0"
  678.  
  679. // ZMarket (module)
  680.  
  681. "zmarketprice" "5750"
  682. }
  683.  
  684. "Knife"
  685. {
  686. // General
  687.  
  688. "weaponentity" "weapon_knife"
  689. "weapontype" "All, Melee"
  690. "weaponslot" "2"
  691.  
  692. // Restrict (core)
  693.  
  694. "restrictdefault" "no"
  695. "toggleable" "no"
  696.  
  697. // Knockback (module)
  698.  
  699. "knockback" "10.0"
  700. }
  701.  
  702. "HEGrenade"
  703. {
  704. // General
  705.  
  706. "weaponentity" "weapon_hegrenade"
  707. "weapontype" "All, Projectile"
  708. "weaponslot" "3"
  709.  
  710. // Restrict (core)
  711.  
  712. "restrictdefault" "no"
  713. "toggleable" "yes"
  714.  
  715. // Knockback (module)
  716.  
  717. "knockback" "6.0"
  718.  
  719. // ZMarket (module)
  720.  
  721. "zmarketprice" "300"
  722. "zmarketpurchasemax" "1"
  723. }
  724.  
  725. "Flashbang"
  726. {
  727. // General
  728.  
  729. "weaponentity" "weapon_flashbang"
  730. "weapontype" "All, Projectile"
  731. "weaponslot" "3"
  732.  
  733. // Restrict (core)
  734.  
  735. "restrictdefault" "yes"
  736. "toggleable" "yes"
  737.  
  738. // ZMarket (module)
  739.  
  740. "zmarketprice" "200"
  741. "zmarketpurchasemax" "1"
  742. }
  743.  
  744. "Smokegrenade"
  745. {
  746. // General
  747.  
  748. "weaponentity" "weapon_smokegrenade"
  749. "weapontype" "All, Projectile"
  750. "weaponslot" "3"
  751.  
  752. // Restrict (core)
  753.  
  754. "restrictdefault" "yes"
  755. "toggleable" "yes"
  756.  
  757. // ZMarket (module)
  758.  
  759. "zmarketprice" "300"
  760. "zmarketpurchasemax" "1"
  761. }
  762.  
  763. "NVGs"
  764. {
  765. // General
  766.  
  767. "weaponentity" "item_nvgs"
  768. "weapontype" "All, Equipment"
  769. "weaponslot" "5"
  770.  
  771. // Restrict (core)
  772.  
  773. "restrictdefault" "yes"
  774. "toggleable" "yes"
  775.  
  776. // ZMarket (module)
  777.  
  778. "zmarketprice" "1000"
  779. }
  780. }
Add Comment
Please, Sign In to add comment