Advertisement
Guest User

meth

a guest
Aug 31st, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 KB | None | 0 0
  1. /*---------------------------------------------------------------------------
  2.  
  3. DarkRP custom entities
  4.  
  5. ---------------------------------------------------------------------------
  6.  
  7.  
  8.  
  9. This file contains your custom entities.
  10.  
  11. This file should also contain entities from DarkRP that you edited.
  12.  
  13.  
  14.  
  15. Note: If you want to edit a default DarkRP entity, first disable it in darkrp_config/disabled_defaults.lua
  16.  
  17. Once you've done that, copy and paste the entity to this file and edit it.
  18.  
  19.  
  20.  
  21. The default entities can be found here:
  22.  
  23. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/addentities.lua#L111
  24.  
  25.  
  26.  
  27. Add entities under the following line:
  28.  
  29. ---------------------------------------------------------------------------*/
  30.  
  31. AddEntity("Topaz Printer", {
  32.  
  33. ent = "topaz_money_printer",
  34.  
  35. model = "models/props_c17/consolebox01a.mdl",
  36.  
  37. price = 2000,
  38.  
  39. max = 2,
  40.  
  41. cmd = "/buytopaz"
  42.  
  43. })
  44.  
  45.  
  46.  
  47. AddEntity("Amethyst Printer", {
  48.  
  49. ent = "amethyst_money_printer",
  50.  
  51. model = "models/props_c17/consolebox01a.mdl",
  52.  
  53. price = 3000,
  54.  
  55. max = 2,
  56.  
  57. cmd = "/buyamethyst"
  58.  
  59. })
  60.  
  61.  
  62.  
  63. AddEntity("Emerald Printer", {
  64.  
  65. ent = "emerald_money_printer",
  66.  
  67. model = "models/props_c17/consolebox01a.mdl",
  68.  
  69. price = 4500,
  70.  
  71. max = 2,
  72.  
  73. cmd = "/buyemerald"
  74.  
  75. })
  76.  
  77.  
  78.  
  79. AddEntity("Ruby Printer", {
  80.  
  81. ent = "ruby_money_printer",
  82.  
  83. model = "models/props_c17/consolebox01a.mdl",
  84.  
  85. price = 5500,
  86.  
  87. max = 2,
  88.  
  89. cmd = "/buyruby"
  90.  
  91. })
  92.  
  93.  
  94.  
  95. AddEntity("Sapphire Printer", {
  96.  
  97. ent = "sapphire_money_printer",
  98.  
  99. model = "models/props_c17/consolebox01a.mdl",
  100.  
  101. price = 7500,
  102.  
  103. max = 2,
  104.  
  105. cmd = "/buysapphire"
  106.  
  107. })
  108.  
  109.  
  110.  
  111. DarkRP.createEntity("Gas Canister", {
  112.  
  113. ent = "eml_gas",
  114.  
  115. model = "models/props_c17/canister01a.mdl",
  116.  
  117. price = 500,
  118.  
  119. max = 20,
  120.  
  121. cmd = "buygascanister"
  122.  
  123. })
  124.  
  125.  
  126.  
  127. DarkRP.createEntity("Liquid Iodine", {
  128.  
  129. ent = "eml_iodine",
  130.  
  131. model = "models/props_lab/jar01b.mdl",
  132.  
  133. price = 250,
  134.  
  135. max = 20,
  136.  
  137. cmd = "buyiodine"
  138.  
  139. })
  140.  
  141.  
  142.  
  143. DarkRP.createEntity("Jar", {
  144.  
  145. ent = "eml_jar",
  146.  
  147. model = "models/props_lab/jar01a.mdl",
  148.  
  149. price = 100,
  150.  
  151. max = 20,
  152.  
  153. cmd = "buyjar"
  154.  
  155. })
  156.  
  157.  
  158.  
  159. DarkRP.createEntity("Muriatic Acid", {
  160.  
  161. ent = "eml_macid",
  162.  
  163. model = "models/props_junk/garbage_plasticbottle001a.mdl",
  164.  
  165. price = 250,
  166.  
  167. max = 20,
  168.  
  169. cmd = "buymacid"
  170.  
  171. })
  172.  
  173.  
  174.  
  175. DarkRP.createEntity("Pot", {
  176.  
  177. ent = "eml_pot",
  178.  
  179. model = "models/props_c17/metalPot001a.mdl",
  180.  
  181. price = 150,
  182.  
  183. max = 20,
  184.  
  185. cmd = "buypot"
  186.  
  187. })
  188.  
  189.  
  190.  
  191. DarkRP.createEntity("Special Pot", {
  192.  
  193. ent = "eml_spot",
  194.  
  195. model = "models/props_c17/metalPot001a.mdl",
  196.  
  197. price = 300,
  198.  
  199. max = 20,
  200.  
  201. cmd = "buyspot"
  202.  
  203. })
  204.  
  205.  
  206.  
  207. DarkRP.createEntity("Stove", {
  208.  
  209. ent = "eml_stove",
  210.  
  211. model = "models/props_c17/furnitureStove001a.mdl",
  212.  
  213. price = 600,
  214.  
  215. max = 5,
  216.  
  217. cmd = "buystove"
  218.  
  219. })
  220.  
  221.  
  222.  
  223. DarkRP.createEntity("Liquid Sulfur", {
  224.  
  225. ent = "eml_sulfur",
  226.  
  227. model = "models/props_lab/jar01b.mdl",
  228.  
  229. price = 250,
  230.  
  231. max = 20,
  232.  
  233. cmd = "buysulfur"
  234.  
  235. })
  236.  
  237.  
  238.  
  239. DarkRP.createEntity("Water", {
  240.  
  241. ent = "eml_water",
  242.  
  243. model = "models/props_junk/garbage_plasticbottle003a.mdl",
  244.  
  245. price = 50,
  246.  
  247. max = 20,
  248.  
  249. cmd = "buywater"
  250.  
  251. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement