Advertisement
Guest User

Shipments.lua

a guest
Apr 2nd, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 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("Desert eagle", {
  21. model = "models/weapons/w_pist_deagle.mdl",
  22. entity = "weapon_deagle2",
  23. price = 215,
  24. amount = 10,
  25. separate = true,
  26. pricesep = 215,
  27. noship = true,
  28. allowed = {TEAM_GUN},
  29. category = "Pistols",
  30. })
  31.  
  32. DarkRP.createShipment("Fiveseven", {
  33. model = "models/weapons/w_pist_fiveseven.mdl",
  34. entity = "weapon_fiveseven2",
  35. price = 0,
  36. amount = 10,
  37. separate = true,
  38. pricesep = 205,
  39. noship = true,
  40. allowed = {TEAM_GUN},
  41. category = "Pistols",
  42. })
  43.  
  44. DarkRP.createShipment("Glock", {
  45. model = "models/weapons/w_pist_glock18.mdl",
  46. entity = "weapon_glock2",
  47. price = 0,
  48. amount = 10,
  49. separate = true,
  50. pricesep = 160,
  51. noship = true,
  52. allowed = {TEAM_GUN},
  53. category = "Pistols",
  54. })
  55.  
  56. DarkRP.createShipment("P228", {
  57. model = "models/weapons/w_pist_p228.mdl",
  58. entity = "weapon_p2282",
  59. price = 0,
  60. amount = 10,
  61. separate = true,
  62. pricesep = 185,
  63. noship = true,
  64. allowed = {TEAM_GUN},
  65. category = "Pistols",
  66. })
  67.  
  68. DarkRP.createShipment("AK47", {
  69. model = "models/weapons/w_rif_ak47.mdl",
  70. entity = "weapon_ak472",
  71. price = 2450,
  72. amount = 10,
  73. separate = false,
  74. pricesep = nil,
  75. noship = false,
  76. allowed = {TEAM_GUN},
  77. category = "Rifles",
  78. })
  79.  
  80. DarkRP.createShipment("MP5", {
  81. model = "models/weapons/w_smg_mp5.mdl",
  82. entity = "weapon_mp52",
  83. price = 2200,
  84. amount = 10,
  85. separate = false,
  86. pricesep = nil,
  87. noship = false,
  88. allowed = {TEAM_GUN},
  89. category = "Rifles",
  90. })
  91.  
  92. DarkRP.createShipment("M4", {
  93. model = "models/weapons/w_rif_m4a1.mdl",
  94. entity = "weapon_m42",
  95. price = 2450,
  96. amount = 10,
  97. separate = false,
  98. pricesep = nil,
  99. noship = false,
  100. allowed = {TEAM_GUN},
  101. category = "Rifles",
  102. })
  103.  
  104. DarkRP.createShipment("Mac 10", {
  105. model = "models/weapons/w_smg_mac10.mdl",
  106. entity = "weapon_mac102",
  107. price = 2150,
  108. amount = 10,
  109. separate = false,
  110. pricesep = nil,
  111. noship = false,
  112. allowed = {TEAM_GUN}
  113. })
  114.  
  115. DarkRP.createShipment("Pump shotgun", {
  116. model = "models/weapons/w_shot_m3super90.mdl",
  117. entity = "weapon_pumpshotgun2",
  118. price = 1750,
  119. amount = 10,
  120. separate = false,
  121. pricesep = nil,
  122. noship = false,
  123. allowed = {TEAM_GUN},
  124. category = "Shotguns",
  125. })
  126.  
  127. DarkRP.createShipment("Sniper rifle", {
  128. model = "models/weapons/w_snip_g3sg1.mdl",
  129. entity = "ls_sniper",
  130. price = 3750,
  131. amount = 10,
  132. separate = false,
  133. pricesep = nil,
  134. noship = false,
  135. allowed = {TEAM_GUN},
  136. category = "Snipers",
  137. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement