Addentities Makes breaks F4 Menu

Post Reply
laws16
New to forums
New to forums
Posts: 1
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Fri Jan 30, 2015 2:28 pm

Addentities Makes breaks F4 Menu

Post by laws16 »

I don't know what I am doing wrong but I was trying to edit the shipments. So I went to /garrysmod/gamemodes/darkrp/gamemode/config . But as soon as I edit it the weapons tab disappears keeping me from having singles, all I can put is shipments in the shipments tab. I don't know what I did wrong but here is my code.

DarkRP.createShipment("AK47", {
model = "models/weapons/w_ak47_m9k.mdl",
entity = "m9k_ak47",
price = 10000,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("ACR", {
model = "models/weapons/w_masada_acr.mdl",
entity = "m9k_acr",
price = 10000,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("HK 416", {
model = "models/weapons/w_hk_416.mdl",
entity = "m9k_m416",
price = 8500,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("AUG", {
model = "models/weapons/w_auga3.mdl",
entity = "m9k_auga3",
price = 9000,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("M14", {
model = "models/weapons/w_snip_m14sp.mdl",
entity = "m9k_m14sp",
price = 6500,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("M4A1 Iron", {
model = "models/weapons/w_m4a1_iron.mdl",
entity = "m9k_m4a1",
price = 8500,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("Vector", {
model = "models/weapons/w_kriss_vector.mdl",
entity = "m9k_vector",
price = 6000,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("MP7", {
model = "models/weapons/w_mp7_silenced.mdl",
entity = "m9k_mp7",
price = 6250,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("Honey Badger", {
model = "models/weapons/w_aac_honeybadger.mdl",
entity = "m9k_honeybadger",
price = 6500,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("Dragunov", {
model = "models/weapons/w_svd_dragunov.mdl",
entity = "m9k_dragunov",
price = 15000,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("M24", {
model = "models/weapons/w_snip_m24_6.mdl",
entity = "m9k_m24",
price = 16500,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("Winchester 87'", {
model = "models/weapons/w_winchester_1887.mdl",
entity = "m9k_1887winchester",
price = 11000,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("Remington 870", {
model = "models/weapons/w_remington_870_tact.mdl",
entity = "m9k_remington870",
price = 10500,
amount = 10,
seperate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("Colt 1911", {
model = "models/weapons/s_dmgf_co1911.mdl",
entity = "m9k_colt1911",
price = 250,
amount = 1,
seperate = true,
pricesep = 250,
noship = true,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("M29 Satan", {
model = "models/weapons/w_m29_satan.mdl",
entity = "m9k_m29satan",
price = 400,
amount = 1,
seperate = true,
pricesep = 400,
noship = true,
allowed = {TEAM_GUN}
})

DarkRP.createShipment("M29 Beretta", {
model = "models/weapons/w_beretta_m92.mdl",
entity = "m9k_m92beretta",
price = 200,
amount = 1,
seperate = true,
pricesep = 200,
noship = true,
allowed = {TEAM_GUN}
})
Post Reply