TheBeta

entities.lua

Aug 31st, 2014
906
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.15 KB | None | 0 0
  1.  
  2. AddEntity("Bronze printer", {
  3.         ent = "bronze_printer",
  4.         model = "models/props_c17/consolebox01a.mdl",
  5.         price = 2000,
  6.         max = 2,
  7.         cmd = "bronzeprinter"
  8. })
  9.  
  10. AddEntity("Silver printer", {
  11.         ent = "silver_printer",
  12.         model = "models/props_c17/consolebox01a.mdl",
  13.         price = 4000,
  14.         max = 1,
  15.         cmd = "silverprinter"
  16. })
  17.  
  18. AddEntity("Golden printer", {
  19.         ent = "golden_printer",
  20.         model = "models/props_c17/consolebox01a.mdl",
  21.         price = 5000,
  22.         max = 1,
  23.         cmd = "goldenprinter"
  24. })
  25.  
  26. AddEntity("Diamond printer", {
  27.         ent = "diamond_printer",
  28.         model = "models/props_c17/consolebox01a.mdl",
  29.         price = 6500,
  30.         max = 1,
  31.         cmd = "diamondprinter"
  32. })
  33.  
  34. AddEntity("Coolant cell", {
  35.         ent = "printer_coolant_cell",
  36.         model = "models/Items/battery.mdl",
  37.         price = 500,
  38.         max = 2,
  39.         cmd = "coolant_cell"
  40. })
  41.  
  42. AddEntity("Printer upgrade", {
  43.         ent = "printer_upgrade",
  44.         model = "models/props_phx/gears/bevel12.mdl",
  45.         price = 2000,
  46.         max = 1,
  47.         cmd = "printer_upgrade"
  48. })
Advertisement
Add Comment
Please, Sign In to add comment