Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom food
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom food.
  6. This file should also contain food from DarkRP that you edited.
  7.  
  8. THIS WILL ONLY LOAD IF HUNGERMOD IS ENABLED IN darkrp_config/disabled_defaults.lua.
  9. IT IS DISABLED BY DEFAULT.
  10.  
  11. Note: If you want to edit a default DarkRP food, first disable it in darkrp_config/disabled_defaults.lua
  12. Once you've done that, copy and paste the food item to this file and edit it.
  13.  
  14. The default food can be found here:
  15.  
  16.  
  17. Add food under the following line:
  18. ---------------------------------------------------------------------------]]
  19. DarkRP.createFood("Jus de pomme", {
  20. model = "models/foodnhouseholditems/juicesmall.mdl",
  21. energy = 5,
  22. price = 25
  23. })
  24. DarkRP.createFood("Apple Jack", {
  25. model = "models/foodnhouseholditems/applejacks.mdl",
  26. energy = 15,
  27. price = 75
  28. })
  29. DarkRP.createFood("Bacon", {
  30. model = "models/foodnhouseholditems/baconcooked.mdl",
  31. energy = 10,
  32. price = 50
  33. })
  34. DarkRP.createFood("Baguette", {
  35. model = "models/foodnhouseholditems/bagette.mdl",
  36. energy = 15,
  37. price = 75
  38. })
  39. DarkRP.createFood("Royal Bacon", {
  40. model = "models/foodnhouseholditems/burgergtaiv.mdl",
  41. energy = 18,
  42. price = 90
  43. })
  44. DarkRP.createFood("Big Bac", {
  45. model = "models/foodnhouseholditems/mcdburger.mdl",
  46. energy = 25,
  47. price = 125
  48. })
  49. DarkRP.createFood("Cheese Burger", {
  50. model = "models/foodnhouseholditems/burgersims2.mdl",
  51. energy = 20,
  52. price = 100
  53. })
  54. DarkRP.createFood("Gateau", {
  55. model = "models/foodnhouseholditems/cake.mdl",
  56. energy = 50,
  57. price = 250
  58. })
  59. DarkRP.createFood("Part de gateau", {
  60. model = "models/foodnhouseholditems/cakepiece.mdl",
  61. energy = 8,
  62. price = 40
  63. })
  64. DarkRP.createFood("Champagne", {
  65. model = "models/foodnhouseholditems/champagneonplate.mdl",
  66. energy = 25,
  67. price = 250
  68. })
  69. DarkRP.createFood("Chip", {
  70. model = "models/foodnhouseholditems/chipslays.mdl",
  71. energy = 15,
  72. price = 75
  73. })
  74. DarkRP.createFood("Chip Barbecue", {
  75. model = "models/foodnhouseholditems/chipslays3.mdl",
  76. energy = 25,
  77. price = 125
  78. })
  79. DarkRP.createFood("Chip au Piment", {
  80. model = "models/foodnhouseholditems/chipslays6.mdl",
  81. energy = 30,
  82. price = 150
  83. })
  84. DarkRP.createFood("Donut", {
  85. model = "models/foodnhouseholditems/donut.mdl",
  86. energy = 5,
  87. price = 5
  88. })
  89. DarkRP.createFood("Hot Dog", {
  90. model = "models/foodnhouseholditems/hotdog.mdl",
  91. energy = 15,
  92. price = 75
  93. })
  94. DarkRP.createFood("Jus orange", {
  95. model = "models/foodnhouseholditems/juice.mdl",
  96. energy = 20,
  97. price = 100
  98. })
  99. DarkRP.createFood("Kinder Surprise", {
  100. model = "models/foodnhouseholditems/kinderbox.mdl",
  101. energy = 10,
  102. price = 50
  103. })
  104. DarkRP.createFood("1 Kinder Surprise", {
  105. model = "models/foodnhouseholditems/kindersurprise.mdl",
  106. energy = 5,
  107. price = 25
  108. })
  109. DarkRP.createFood("1 Kinder Surprise", {
  110. model = "models/foodnhouseholditems/kindersurprise.mdl",
  111. energy = 5,
  112. price = 25
  113. })
  114. DarkRP.createFood("1 Menu maxi", {
  115. model = "models/foodnhouseholditems/mcdmeal2.mdl",
  116. energy = 50,
  117. price = 250
  118. })
  119. DarkRP.createFood("Double Menu maxi", {
  120. model = "models/foodnhouseholditems/mcdmeal.mdl",
  121. energy = 100,
  122. price = 500
  123. })
  124. DarkRP.createFood("Pizza", {
  125. model = "models/foodnhouseholditems/pizzabox.mdl",
  126. energy = 40,
  127. price = 200
  128. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement