Advertisement
TheCodingBeast

DarkRP 2.5 Shipments

Feb 12th, 2014
5,040
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. -- Shipment
  2. AddCustomShipment("DSR 50", {
  3.     model = "models/weapons/w_dsr50_sd.mdl",
  4.     entity = "bender_dsr50",
  5.     price = 5000,
  6.     amount = 10,
  7.     separate = false,
  8.     pricesep = 0,
  9.     noship = false,
  10.     allowed = {TEAM_GUN}
  11. })
  12.  
  13. -- Single Gun
  14. AddCustomShipment("DSR 50", {
  15.     model = "models/weapons/w_dsr50_sd.mdl",
  16.     entity = "bender_dsr50",
  17.     price = 5000,
  18.     amount = 10,
  19.     separate = true,
  20.     pricesep = 1000,
  21.     noship = true,
  22.     allowed = {TEAM_GUN}
  23. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement