Skip to content

Instantly share code, notes, and snippets.

DarkRP.createEntity("Gas Canister", {
ent = "eml_gas",
model = "models/props_c17/canister01a.mdl",
price = 100,
max = 20,
cmd = "buygascanister"
})
DarkRP.createEntity("Liquid Iodine", {
ent = "eml_iodine",
// PISTOLS //
DarkRP.createShipment("Python", "models/weapons/w_colt_python.mdl", "m9k_coltpython", 12000, 10, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("Python Single", "models/weapons/w_colt_python.mdl", "m9k_coltpython", 1200, 1, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("Colt 1911", "models/weapons/s_dmgf_co1911.mdl", "m9k_colt1911", 12000, 10, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("Colt 1911 Single", "models/weapons/s_dmgf_co1911.mdl", "m9k_colt1911", 1500, 1, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("HK 45C", "models/weapons/w_hk45c.mdl", "m9k_hk45", 15000, 10, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("HK 45C Single", "models/weapons/w_hk45c.mdl", "m9k_hk45", 2000, 1, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("Luger", "models/weapons/w_luger_p08.mdl", "m9k_luger", 12000, 10, false, 0, false, {TEAM_GUN})
DarkRP.createShipment("Luger Single", "models/weapons/w_luger_p08.mdl", "m9k_luger", 1000, 1, false, 0, false, {TEAM_GUN})
DarkRP.createShipmen
DarkRP.createAmmoType("357", {
name = "M9K 357 ammo",
model = "models/Items/357ammobox.mdl",
price = 60,
amountGiven = 20
})
DarkRP.createAmmoType("ar2", {
name = "M9K Rifle ammo",
model = "models/Items/BoxMRounds.mdl",
price = 60,
local TB2Insert = {}
TB2Insert.VehicleName = "VEHICLE NAME"
TB2Insert.CarName = "CAR PRINT NAME"
TB2Insert.CarPrice = 100
TB2Insert.CarRefund = 100
TB2Insert.IsSCar = true
TB2Insert.Description = "DESCRIPTIONS"
TB2Insert.AvaliableTeam = {TEAM_POLICE,TEAM_MOB}
TB2Insert.AvaliableGroup = {"superadmin","admin"}
@apal2
apal2 / Jobs
Last active July 4, 2016 21:53
--[[---------------------------------------------------------------------------
DarkRP custom jobs
---------------------------------------------------------------------------
This file contains your custom jobs.
This file should also contain jobs from DarkRP that you edited.
Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
Once you've done that, copy and paste the job to this file and edit it.