Guest User

Untitled

a guest
Aug 22nd, 2014
4,790
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. DarkRP.createEntity("Bronze Printer", {
  2. ent = "money_printer_bronze",
  3. model = "models/props_c17/consolebox01a.mdl",
  4. price = 1000,
  5. max = 2,
  6. cmd = "/buybronzeprinter",
  7. allowed = {},
  8. })
  9.  
  10. DarkRP.createEntity("Silver Printer", {
  11. ent = "money_printer_silver",
  12. model = "models/props_c17/consolebox01a.mdl",
  13. price = 2500,
  14. max = 2,
  15. cmd = "/buysilverprinter",
  16. allowed = {},
  17. })
  18.  
  19. DarkRP.createEntity("Gold Printer", {
  20. ent = "money_printer_gold",
  21. model = "models/props_c17/consolebox01a.mdl",
  22. price = 5000,
  23. max = 2,
  24. cmd = "/buygoldprinter",
  25. allowed = {},
  26. })
  27.  
  28. DarkRP.createEntity("Diamond Printer", {
  29. ent = "money_printer_diamond",
  30. model = "models/props_c17/consolebox01a.mdl",
  31. price = 7500,
  32. max = 2,
  33. cmd = "/buydiamondprinter",
  34. allowed = {},
  35. })
  36.  
  37. DarkRP.createEntity("Platinum Printer", {
  38. ent = "money_printer_platinum",
  39. model = "models/props_c17/consolebox01a.mdl",
  40. price = 10000,
  41. max = 2,
  42. cmd = "/buyplatinumprinter",
  43. allowed = {},
  44. })
Advertisement
Add Comment
Please, Sign In to add comment