Advertisement
Shubbler

M9K Ammo.lua

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