aeralle

M9K AMMO

Aug 28th, 2015
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. DarkRP.createAmmoType("357", {
  2.     name = "M9K 357 ammo",
  3.     model = "models/Items/357ammobox.mdl",
  4.     price = 60,
  5.     amountGiven = 20
  6. })
  7. DarkRP.createAmmoType("ar2", {
  8.     name = "M9K Rifle ammo",
  9.     model = "models/Items/BoxMRounds.mdl",
  10.     price = 60,
  11.     amountGiven = 30
  12. })
  13. DarkRP.createAmmoType("buckshot", {
  14.     name = "M9K Shotgun ammo",
  15.     model = "models/Items/BoxBuckshot.mdl",
  16.     price = 40,
  17.     amountGiven = 8
  18. })
  19. DarkRP.createAmmoType("pistol", {
  20.     name = "M9K Pistol ammo",
  21.     model = "models/Items/BoxSRounds.mdl",
  22.     price = 20,
  23.     amountGiven = 20
  24. })
  25. DarkRP.createAmmoType("smg1", {
  26.     name = "M9K SMG ammo",
  27.     model = "models/Items/BoxMRounds.mdl",
  28.     price = 40,
  29.     amountGiven = 60
  30. })
  31. DarkRP.createAmmoType("SniperPenetratedRound", {
  32.     name = "M9K Sniper ammo",
  33.     model = "models/Items/BoxMRounds.mdl",
  34.     price = 80,
  35.     amountGiven = 6
  36. })
Add Comment
Please, Sign In to add comment