Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. DarkRP.createEntity("Mine cart", {
  2. ent = "mgs_cart",
  3. model = "models/props_wasteland/laundry_cart002.mdl",
  4. price = 100,
  5. max = 2,
  6. cmd = "buycart",
  7. allowed = {TEAM_MINER}
  8. })
  9.  
  10. DarkRP.createEntity("Gas Canister", {
  11. ent = "eml_gas",
  12. model = "models/props_c17/canister01a.mdl",
  13. price = 100,
  14. max = 20,
  15. cmd = "buygascanister"
  16. })
  17.  
  18. DarkRP.createEntity("Liquid Iodine", {
  19. ent = "eml_iodine",
  20. model = "models/props_lab/jar01b.mdl",
  21. price = 800,
  22. max = 20,
  23. cmd = "buyiodine"
  24. })
  25.  
  26. DarkRP.createEntity("Jar", {
  27. ent = "eml_jar",
  28. model = "models/props_lab/jar01a.mdl",
  29. price = 50,
  30. max = 20,
  31. cmd = "buyjar"
  32. })
  33.  
  34. DarkRP.createEntity("Piano", {
  35. ent = "gmt_instrument_piano",
  36. model = "models/fishy/furniture/piano.mdl",
  37. price = 250,
  38. max = 1,
  39. cmd = "buypiano",
  40. allowed = {TEAM_PIANO}
  41. })
  42.  
  43. DarkRP.createEntity("Muriatic Acid", {
  44. ent = "eml_macid",
  45. model = "models/props_junk/garbage_plasticbottle001a.mdl",
  46. price = 50,
  47. max = 20,
  48. cmd = "buymacid"
  49. })
  50.  
  51. DarkRP.createEntity("Pot", {
  52. ent = "eml_pot",
  53. model = "models/props_c17/metalPot001a.mdl",
  54. price = 80,
  55. max = 20,
  56. cmd = "buypot"
  57. })
  58.  
  59. DarkRP.createEntity("Special Pot", {
  60. ent = "eml_spot",
  61. model = "models/props_c17/metalPot001a.mdl",
  62. price = 150,
  63. max = 20,
  64. cmd = "buyspot"
  65. })
  66.  
  67. DarkRP.createEntity("Stove", {
  68. ent = "eml_stove",
  69. model = "models/props_c17/furnitureStove001a.mdl",
  70. price = 500,
  71. max = 5,
  72. cmd = "buystove"
  73. })
  74.  
  75. DarkRP.createEntity("Burger", {
  76. ent = "food_burger",
  77. model = "models/burgerplate01/burgerplate01.mdl",
  78. price = 50,
  79. max = 4,
  80. cmd = "buyburger",
  81. allowed = {TEAM_COOK}
  82. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement