Bread1

Supplier Shipments

May 28th, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.33 KB | None | 0 0
  1. DarkRP.createShipment("First Aid Kit", {
  2.    model = "models/Items/HealthKit.mdl",
  3.    entity = "fas2_ifak",
  4.    price = 40000,
  5.    amount = 10,
  6.    separate = true,
  7.    pricesep = 4500,
  8.    noship = false,
  9.    category = "Medical",
  10.    allowed = {TEAM_CLASS_D_SUPPLIER}
  11. })
  12.  
  13. DarkRP.createShipment("Uzi Submachine Gun", {
  14.    model = "models/weapons/tfa_w_uzi_imi.mdl",
  15.    entity = "tfa_uzi",
  16.    price = 110000,
  17.    amount = 10,
  18.    separate = true,
  19.    pricesep = 11500,
  20.    noship = false,
  21.    category = "Submachine Guns",
  22.    sortOrder = 1,
  23.    allowed = {TEAM_CLASS_D_SUPPLIER}
  24. })
  25.  
  26. DarkRP.createShipment("CZ-75 Full-Auto Pistol", {
  27.    model = "models/weapons/tfa_csgo/w_cz75.mdl",
  28.    entity = "tfa_csgo_cz75",
  29.    price = 80000,
  30.    amount = 10,
  31.    separate = true,
  32.    pricesep = 8500,
  33.    noship = false,
  34.    category = "Pistols",
  35.    sortOrder = 1,
  36.    allowed = {TEAM_CLASS_D_SUPPLIER}
  37. })
  38.  
  39. DarkRP.createShipment("Tec-9 (Full-Auto)", {
  40.    model = "models/weapons/tfa_w_intratec_tec9.mdl",
  41.    entity = "tfa_tec9",
  42.    price = 70000,
  43.    amount = 10,
  44.    separate = true,
  45.    pricesep = 7500,
  46.    noship = false,
  47.    category = "Pistols",
  48.    sortOrder = 2,
  49.    allowed = {TEAM_CLASS_D_SUPPLIER}
  50. })
  51.  
  52. DarkRP.createShipment("Colt Python Revolver", {
  53.    model = "models/weapons/tfa_w_colt_python.mdl",
  54.    entity = "tfa_coltpython",
  55.    price = 60000,
  56.    amount = 10,
  57.    separate = true,
  58.    pricesep = 7000,
  59.    noship = false,
  60.    category = "Pistols",
  61.    sortOrder = 3,
  62.    allowed = {TEAM_CLASS_D_SUPPLIER}
  63. })
  64.  
  65. DarkRP.createShipment("M92 Beretta", {
  66.    model = "models/weapons/tfa_w_beretta_m92.mdl",
  67.    entity = "tfa_m92beretta",
  68.    price = 30000,
  69.    amount = 10,
  70.    separate = true,
  71.    pricesep = 3500,
  72.    noship = false,
  73.    category = "Pistols",
  74.    sortOrder = 4,
  75.    allowed = {TEAM_CLASS_D_SUPPLIER}
  76. })
  77.  
  78. DarkRP.createShipment("Tec-9 (Semi-Auto)", {
  79.    model = "models/weapons/tfa_csgo/w_tec9.mdl",
  80.    entity = "tfa_csgo_tec9",
  81.    price = 28000,
  82.    amount = 10,
  83.    separate = true,
  84.    pricesep = 3250,
  85.    noship = false,
  86.    category = "Pistols",
  87.    sortOrder = 5,
  88.    allowed = {TEAM_CLASS_D_SUPPLIER}
  89. })
  90.  
  91. DarkRP.createShipment("USP-S", {
  92.    model = "models/weapons/tfa_csgo/w_usp.mdl",
  93.    entity = "tfa_csgo_usp",
  94.    price = 24000,
  95.    amount = 10,
  96.    separate = true,
  97.    pricesep = 2500,
  98.    noship = false,
  99.    category = "Pistols",
  100.    sortOrder = 6,
  101.    allowed = {TEAM_CLASS_D_SUPPLIER}
  102. })
  103.  
  104. DarkRP.createShipment("Sledgehammer", {
  105.    model = "models/weapons/tfa_nmrih/w_me_sledge.mdl",
  106.    entity = "tfa_nmrih_sledge",
  107.    price = 0,
  108.    amount = 1,
  109.    separate = true,
  110.    pricesep = 500,
  111.    noship = true,
  112.    category = "Melee Weapons",
  113.    sortOrder = 1,
  114.    allowed = {TEAM_CLASS_D_SUPPLIER}
  115. })
  116.  
  117. DarkRP.createShipment("Crowbar", {
  118.    model = "models/weapons/tfa_nmrih/w_me_crowbar.mdl",
  119.    entity = "tfa_nmrih_crowbar",
  120.    price = 0,
  121.    amount = 1,
  122.    separate = true,
  123.    pricesep = 350,
  124.    noship = true,
  125.    category = "Melee Weapons",
  126.    sortOrder = 2,
  127.    allowed = {TEAM_CLASS_D_SUPPLIER}
  128. })
  129.  
  130. DarkRP.createShipment("Lead Pipe", {
  131.    model = "models/weapons/tfa_nmrih/w_me_pipe_lead.mdl",
  132.    entity = "tfa_nmrih_lpipe",
  133.    price = 0,
  134.    amount = 1,
  135.    separate = true,
  136.    pricesep = 250,
  137.    noship = true,
  138.    category = "Melee Weapons",
  139.    sortOrder = 3,
  140.    allowed = {TEAM_CLASS_D_SUPPLIER}
  141. })
  142.  
Add Comment
Please, Sign In to add comment