Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. // THIS IS CATEGORIES.lua
  2.  
  3.  
  4. -- Weapon Categories --
  5. -- Weapon Categories --
  6. -- Weapon Categories --
  7.  
  8. DarkRP.createCategory{
  9. name = "Pistols",
  10. categorises = "weapons",
  11. startExpanded = true,
  12. color = Color(145, 145, 145, 255),
  13. canSee = function(ply) return true end,
  14. sortOrder = 100
  15. }
  16. DarkRP.createCategory{
  17. name = "Shotguns",
  18. categorises = "weapons",
  19. startExpanded = true,
  20. color = Color(145, 145, 145, 255),
  21. canSee = function(ply) return true end,
  22. sortOrder = 110
  23. }
  24. DarkRP.createCategory{
  25. name = "Assault Rifles",
  26. categorises = "weapons",
  27. startExpanded = true,
  28. color = Color(145, 145, 145, 255),
  29. canSee = function(ply) return true end,
  30. sortOrder = 120
  31. }
  32. DarkRP.createCategory{
  33. name = "Sniper Rifles",
  34. categorises = "weapons",
  35. startExpanded = true,
  36. color = Color(145, 145, 145, 255),
  37. canSee = function(ply) return true end,
  38. sortOrder = 130
  39. }
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. // THIS IS SHIPMENTS.lua
  48.  
  49.  
  50. --ASSAULT RIFLES--
  51. --ASSAULT RIFLES--
  52. --ASSAULT RIFLES--
  53.  
  54. DarkRP.createShipment("lite_ak47", {
  55. model = "models/weapons/w_rif_ak47.mdl",
  56. entity = "lite_ak47",
  57. amount = 10,
  58. price = 10000,
  59. separate = false,
  60. pricesep = 0,
  61. noship = false,
  62. category = "Assault Rifles",
  63. allowed = {TEAM_GUN}
  64. })
  65. DarkRP.createShipment("lite_mac10", {
  66. model = "models/weapons/w_smg_mac10.mdl",
  67. entity = "lite_mac10",
  68. amount = 10,
  69. price = 2500,
  70. separate = false,
  71. pricesep = 0,
  72. noship = false,
  73. category = "Assault Rifles",
  74. allowed = {TEAM_GUN}
  75. })
  76.  
  77. --SNIPERS--
  78. --SNIPERS--
  79. --SNIPERS--
  80.  
  81. DarkRP.createShipment("lite_awp", {
  82. model = "models/weapons/w_snip_awp.mdl",
  83. entity = "lite_awp",
  84. amount = 10,
  85. price = 15000,
  86. separate = false,
  87. pricesep = 0,
  88. noship = false,
  89. category = "Sniper Rifles",
  90. allowed = {TEAM_GUN}
  91. })
  92. DarkRP.createShipment("lite_g3sg1", {
  93. model = "models/weapons/w_snip_g3sg1.mdl",
  94. entity = "lite_g3sg1",
  95. amount = 10,
  96. price = 17500,
  97. separate = false,
  98. pricesep = 0,
  99. noship = false,
  100. category = "Sniper Rifles",
  101. allowed = {TEAM_GUN}
  102. })
  103.  
  104. --SHOTGUNS--
  105. --SHOTGUNS--
  106. --SHOTGUNS--
  107.  
  108. DarkRP.createShipment("lite_xm1014", {
  109. model = "models/weapons/w_shot_xm1014.mdl",
  110. entity = "lite_xm1014",
  111. amount = 10,
  112. price = 5000,
  113. separate = false,
  114. pricesep = 0,
  115. noship = false,
  116. category = "Shotguns",
  117. allowed = {TEAM_GUN}
  118. })
  119. DarkRP.createShipment("lite_m3", {
  120. model = "models/weapons/w_shot_m3super90.mdl",
  121. entity = "lite_m3",
  122. amount = 10,
  123. price = 3500,
  124. separate = false,
  125. pricesep = 0,
  126. noship = false,
  127. category = "Shotguns",
  128. allowed = {TEAM_GUN}
  129. })
  130. --PISTOLS--
  131. --PISTOLS--
  132. --PISTOLS--
  133.  
  134. DarkRP.createShipment("lite_deagle", {
  135. model = "models/weapons/w_pist_deagle.mdl",
  136. entity = "lite_deagle",
  137. amount = 5,
  138. price = 2000,
  139. separate = false,
  140. pricesep = 0,
  141. noship = false,
  142. category = "Pistols",
  143. allowed = {TEAM_GUN}
  144. })
  145. DarkRP.createShipment("lite_usp", {
  146. model = "models/weapons/w_pist_usp.mdl",
  147. entity = "lite_usp",
  148. amount = 5,
  149. price = 1500,
  150. separate = false,
  151. pricesep = 0,
  152. noship = false,
  153. category = "Pistols",
  154. allowed = {TEAM_GUN}
  155. })
  156. DarkRP.createShipment("lite_fiveseven", {
  157. model = "models/weapons/w_pist_fiveseven.mdl",
  158. entity = "lite_fiveseven",
  159. amount = 5,
  160. price = 1250,
  161. separate = false,
  162. pricesep = 0,
  163. noship = false,
  164. category = "Pistols",
  165. allowed = {TEAM_GUN}
  166. })
  167. DarkRP.createShipment("lite_dualberettas", {
  168. model = "models/weapons/w_pist_elite.mdl",
  169. entity = "lite_dualberettas",
  170. amount = 5,
  171. price = 1750,
  172. separate = false,
  173. pricesep = 0,
  174. noship = false,
  175. category = "Pistols",
  176. allowed = {TEAM_GUN}
  177. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement