Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom shipments and guns
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom shipments and guns.
  6. This file should also contain shipments and guns from DarkRP that you edited.
  7.  
  8. Note: If you want to edit a default DarkRP shipment, first disable it in darkrp_config/disabled_defaults.lua
  9. Once you've done that, copy and paste the shipment to this file and edit it.
  10.  
  11. The default shipments and guns can be found here:
  12. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/addentities.lua
  13.  
  14. For examples and explanation please visit this wiki page:
  15. http://wiki.darkrp.com/index.php/DarkRP:CustomShipmentFields
  16.  
  17.  
  18. Add shipments and guns under the following line:
  19. ---------------------------------------------------------------------------]]
  20. DarkRP.createShipment("Black-Market 9MM Pistol", {
  21. model = "models/weapons/w_pist_glock18.mdl",
  22. entity = "uspmatchtrash",
  23. amount = 1,
  24. price = 250,
  25. separate = true,
  26. pricesep = 250,
  27. noship = true,
  28. category = "Pistols",
  29. allowed = {TEAM_RBD},
  30. })
  31. DarkRP.createShipment("Black-Market .357 Revolver", {
  32. model = "models/weapons/tfa357magnum/w_357m_deagle.mdl",
  33. entity = "357magnum1",
  34. amount = 1,
  35. price = 350,
  36. separate = true,
  37. pricesep = 350,
  38. noship = true,
  39. category = "Pistols",
  40. allowed = {TEAM_RBD},
  41. })
  42. DarkRP.createShipment("Black-Market Silenced 9MM Pistol", {
  43. model = "models/weapons/w_pist_usp_silencer.mdl",
  44. entity = "uspmatchtrashsilenced",
  45. amount = 1,
  46. price = 400,
  47. separate = true,
  48. pricesep = 400,
  49. noship = true,
  50. category = "Pistols",
  51. allowed = {TEAM_RBD},
  52. })
  53. DarkRP.createShipment("Black-Market Shotgun (10 Gauge)", {
  54. model = "models/weapons/w_browning_auto.mdl",
  55. entity = "m9k_browningauto5",
  56. amount = 1,
  57. price = 650,
  58. separate = true,
  59. pricesep = 650,
  60. noship = true,
  61. category = "Shotguns",
  62. allowed = {TEAM_RBD},
  63. })
  64. DarkRP.createShipment("Black-Market Shotgun (12 Gauge)", {
  65. model = "models/weapons/w_spas_12.mdl",
  66. entity = "spas12halflifetrash",
  67. amount = 1,
  68. price = 800,
  69. separate = true,
  70. pricesep = 900,
  71. noship = true,
  72. category = "Shotguns",
  73. allowed = {TEAM_RBD},
  74. })
  75. DarkRP.createShipment("Axe", {
  76. model = "models/weapons/hl2meleepack/w_axe.mdl",
  77. entity = "weapon_hl2axe",
  78. amount = 1,
  79. price = 50,
  80. separate = true,
  81. pricesep = 50,
  82. noship = true,
  83. category = "Other",
  84. allowed = {TEAM_RBD},
  85. })
  86. DarkRP.createShipment("Pickaxe", {
  87. model = "models/weapons/hl2meleepack/v_pickaxe.mdl",
  88. entity = "weapon_hl2pickaxe",
  89. amount = 1,
  90. price = 60,
  91. separate = true,
  92. pricesep = 60,
  93. noship = true,
  94. category = "Other",
  95. allowed = {TEAM_RBD},
  96. })
  97. DarkRP.createShipment("Lead Pipe", {
  98. model = "models/weapons/hl2meleepack/v_pipe.mdl",
  99. entity = "weapon_hl2pipe",
  100. amount = 1,
  101. price = 35,
  102. separate = true,
  103. pricesep = 35,
  104. noship = true,
  105. category = "Other",
  106. allowed = {TEAM_RBD},
  107. })
  108. DarkRP.createShipment("Combat Knife", {
  109. model = "models/weapons/w_extreme_ratio.mdl",
  110. entity = "m9k_knife",
  111. amount = 1,
  112. price = 90,
  113. separate = true,
  114. pricesep = 90,
  115. noship = true,
  116. category = "Other",
  117. allowed = {TEAM_RBD},
  118. })
  119. DarkRP.createShipment("Combat Machete", {
  120. model = "models/weapons/w_fc2_machete.mdl",
  121. entity = "m9k_machete",
  122. amount = 1,
  123. price = 125,
  124. separate = true,
  125. pricesep = 125,
  126. noship = true,
  127. category = "Other",
  128. allowed = {TEAM_RBD},
  129. })
  130. DarkRP.createShipment("Black-Market MP9 (Silenced)", {
  131. model = "models/weapons/w_brugger_thomet_mp9.mdl",
  132. entity = "m9k_mp9",
  133. amount = 1,
  134. price = 925,
  135. separate = true,
  136. pricesep = 125,
  137. noship = true,
  138. category = "SMG",
  139. allowed = {TEAM_RBD},
  140. })
  141. DarkRP.createShipment("Black-Market MP7", {
  142. model = "models/weapons/w_mp7_silenced.mdl",
  143. entity = "mp7trashsmg1",
  144. amount = 1,
  145. price = 1000,
  146. separate = true,
  147. pricesep = 1000,
  148. noship = true,
  149. category = "SMG",
  150. allowed = {TEAM_RBD},
  151. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement