Advertisement
Lolcats_babe

Untitled

Nov 27th, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. -- Cat's Money printers
  2.  
  3. AddEntity("Copper Printer", {
  4. ent = "copper_printer",
  5. model = "models/props_lab/reciever01a.mdl",
  6. price = 3000,
  7. max = 4,
  8. cmd = "/buycopperprinter",
  9. })
  10.  
  11. AddEntity("Bronze Printer", {
  12. ent = "bronze_printer",
  13. model = "models/props_lab/reciever01b.mdl",
  14. price = 5000,
  15. max = 4,
  16. cmd = "/buybronzeprinter",
  17. })
  18.  
  19. AddEntity("Silver Printer", {
  20. ent = "silver_printer",
  21. model = "models/props/cs_militia/microwave01.mdl",
  22. price = 7000,
  23. max = 4,
  24. cmd = "/buysilverprinter",
  25. })
  26.  
  27. AddEntity("Gold Printer", {
  28. ent = "gold_printer",
  29. model = "models/props_lab/reciever_cart.mdl",
  30. price = 10000,
  31. max = 2,
  32. cmd = "/buygoldprinter"
  33. })
  34.  
  35. AddEntity("Diamond Printer", {
  36. ent = "diamond_printer",
  37. model = "models/props_lab/reciever_cart.mdl",
  38. price = 15000,
  39. max = 2,
  40. cmd = "/buydiamondprinter"
  41. })
  42.  
  43. AddEntity("Platinum Printer", {
  44. ent = "platinum_printer",
  45. model = "models/props_lab/reciever_cart.mdl",
  46. price = 20000,
  47. max = 2,
  48. cmd = "/buyplatprinter"
  49. })
  50.  
  51. AddEntity("Lutetium Printer", {
  52. ent = "lutetium_printer",
  53. model = "models/props_combine/combine_intwallunit.mdl",
  54. price = 30000,
  55. max = 2,
  56. cmd = "/buyluteprinter"
  57. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement