gapjustin

GAP printers

Jan 29th, 2015
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.55 KB | None | 0 0
  1. -- Gap's printers
  2. AddEntity("Hobo Printer", {
  3.         ent = "hoboprinter",
  4.         model = "models/props_c17/consolebox01a.mdl",
  5.         price = 1000,
  6.         max = 2,
  7.         cmd = "buyhobo"
  8. })
  9.  
  10. AddEntity("Dirt Printer", {
  11.         ent = "dirtprinter",
  12.         model = "models/props_c17/consolebox01a.mdl",
  13.         price = 2000,
  14.         max = 2,
  15.         cmd = "buydirt"
  16. })
  17.  
  18. AddEntity("Wood Printer", {
  19.         ent = "woodprinter",
  20.         model = "models/props_c17/consolebox01a.mdl",
  21.         price = 3000,
  22.         max = 2,
  23.         cmd = "buywood"
  24. })
  25.  
  26. AddEntity("Charcoal Printer", {
  27.         ent = "charcoalprinter",
  28.         model = "models/props_c17/consolebox01a.mdl",
  29.         price = 4000,
  30.         max = 2,
  31.         cmd = "buycharcoal"
  32. })
  33.  
  34. AddEntity("Glass Printer", {
  35.         ent = "glassprinter",
  36.         model = "models/props_c17/consolebox01a.mdl",
  37.         price = 5000,
  38.         max = 2,
  39.         cmd = "buyglass"
  40. })
  41.  
  42. AddEntity("Coal Printer", {
  43.         ent = "coalprinter",
  44.         model = "models/props_c17/consolebox01a.mdl",
  45.         price = 7500,
  46.         max = 2,
  47.         cmd = "buycoal"
  48. })
  49.  
  50. AddEntity("Iron Printer", {
  51.         ent = "ironprinter",
  52.         model = "models/props_c17/consolebox01a.mdl",
  53.         price = 10000,
  54.         max = 2,
  55.         cmd = "buyiron"
  56. })
  57.  
  58. AddEntity("Bronze Printer", {
  59.         ent = "bronzeprinter",
  60.         model = "models/props_c17/consolebox01a.mdl",
  61.         price = 20000,
  62.         max = 2,
  63.         cmd = "buybronze"
  64. })
  65.  
  66. AddEntity("Silver Printer", {
  67.         ent = "silverprinter",
  68.         model = "models/props_c17/consolebox01a.mdl",
  69.         price = 30000,
  70.         max = 2,
  71.         cmd = "buysilver"
  72. })
  73.  
  74. AddEntity("Gold Printer", {
  75.         ent = "goldprinter",
  76.         model = "models/props_c17/consolebox01a.mdl",
  77.         price = 40000,
  78.         max = 2,
  79.         cmd = "buygold"
  80. })
  81.  
  82. AddEntity("Diamond Printer", {
  83.         ent = "diamondprinter",
  84.         model = "models/props_c17/consolebox01a.mdl",
  85.         price = 50000,
  86.         max = 2,
  87.         cmd = "buydiamond"
  88. })
  89.  
  90. AddEntity("Platinum Printer", {
  91.         ent = "platinumprinter",
  92.         model = "models/props_c17/consolebox01a.mdl",
  93.         price = 75000,
  94.         max = 2,
  95.         cmd = "buyplatinum"
  96. })
  97.  
  98. AddEntity("Emerald Printer", {
  99.         ent = "emeraldprinter",
  100.         model = "models/props_c17/consolebox01a.mdl",
  101.         price = 100000,
  102.         max = 2,
  103.         cmd = "buyemerald"
  104. })
  105.  
  106. AddEntity("heavenly Printer", {
  107.         ent = "heavenprinter",
  108.         model = "models/props_c17/consolebox01a.mdl",
  109.         price = 200000,
  110.         max = 2,
  111.         cmd = "buyheaven"
  112. })
  113.  
  114. AddEntity("Hell Printer", {
  115.         ent = "hellprinter",
  116.         model = "models/props_c17/consolebox01a.mdl",
  117.         price = 300000,
  118.         max = 2,
  119.         cmd = "buyhell"
  120. })
  121.  
  122. AddEntity("Minigun Printer", {
  123.         ent = "minigunprinter",
  124.         model = "models/props_c17/consolebox01a.mdl",
  125.         price = 400000,
  126.         max = 2,
  127.         cmd = "buyminigun"
  128. })
  129.  
  130. AddEntity("Admin Printer", {
  131.         ent = "adminprinter",
  132.         model = "models/props_c17/consolebox01a.mdl",
  133.         price = 500000,
  134.         max = 2,
  135.         cmd = "buyadmin"
  136. })
  137.  
  138. AddEntity("OP Printer", {
  139.         ent = "opprinter",
  140.         model = "models/props_c17/consolebox01a.mdl",
  141.         price = 750000,
  142.         max = 2,
  143.         cmd = "buyop"
  144. })
  145.  
  146. AddEntity("GAP Printer", {
  147.         ent = "gapprinter",
  148.         model = "models/props_c17/consolebox01a.mdl",
  149.         price = 1000000,
  150.         max = 2,
  151.         cmd = "buygap"
  152. })
Advertisement
Add Comment
Please, Sign In to add comment