Advertisement
CODE_BLUE

Untitled

Oct 14th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1.  
  2.  
  3. DarkRP.createEntity("Gas Canister", {
  4. ent = "eml_gas",
  5. model = "models/props_c17/canister01a.mdl",
  6. price = 350,
  7. max = 4,
  8. cmd = "buygascanister",
  9. category = "Meth",
  10. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  11. })
  12.  
  13. DarkRP.createEntity("Liquid Iodine", {
  14. ent = "eml_iodine",
  15. model = "models/props_lab/jar01b.mdl",
  16. price = 250,
  17. max = 5,
  18. cmd = "buyiodine",
  19. category = "Meth",
  20. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  21. })
  22.  
  23. DarkRP.createEntity("Jar", {
  24. ent = "eml_jar",
  25. model = "models/props_lab/jar01a.mdl",
  26. price = 100,
  27. max = 5,
  28. cmd = "buyjar",
  29. category = "Meth",
  30. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  31. })
  32.  
  33. DarkRP.createEntity("Muriatic Acid", {
  34. ent = "eml_macid",
  35. model = "models/props_junk/garbage_plasticbottle001a.mdl",
  36. price = 250,
  37. max = 5,
  38. cmd = "buymacid",
  39. category = "Meth",
  40. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  41. })
  42.  
  43. DarkRP.createEntity("Pot", {
  44. ent = "eml_pot",
  45. model = "models/props_c17/metalPot001a.mdl",
  46. price = 250,
  47. max = 5,
  48. cmd = "buypot",
  49. category = "Meth",
  50. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  51. })
  52.  
  53. DarkRP.createEntity("Special Pot", {
  54. ent = "eml_spot",
  55. model = "models/props_c17/metalPot001a.mdl",
  56. price = 275,
  57. max = 5,
  58. cmd = "buyspot",
  59. category = "Meth",
  60. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  61. })
  62.  
  63. DarkRP.createEntity("Stove", {
  64. ent = "eml_stove",
  65. model = "models/props_c17/furnitureStove001a.mdl",
  66. price = 4500,
  67. max = 2,
  68. cmd = "buystove",
  69. category = "Meth",
  70. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  71. })
  72.  
  73. DarkRP.createEntity("Liquid Sulfur", {
  74. ent = "eml_sulfur",
  75. model = "models/props_lab/jar01b.mdl",
  76. price = 250,
  77. max = 5,
  78. cmd = "buysulfur",
  79. category = "Meth",
  80. allowed = {TEAM_METH, TEAM_NAILGUN, TEAM_MEMES},
  81. })
  82.  
  83. DarkRP.createEntity("Water", {
  84. ent = "eml_water",
  85. model = "models/props_junk/garbage_plasticbottle003a.mdl",
  86. price = 100,
  87. max = 5,
  88. cmd = "buy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement