• Shipments won't show up?
    7 replies, posted
Okay so for some reason my custom FA:S2 shipments won't show up in game, anyone have any clues as to what i'm doing wrong? Here is the class: [code]TEAM_GUND = DarkRP.createJob("Gun Dealer", { color = Color(255, 255, 255, 255), model = { "models/player/Group03/Female_01.mdl", "models/player/Group03/Female_02.mdl" }, description = [[Sell guns and make money!]], weapons = {}, command = "gd", max = 2, salary = 50, admin = 0, vote = false, hasLicense = false })[/code] and here are the shipments: [code] DarkRP.createShipment("Ammo Box", { model = "models/weapons/w_ammobox_thrown.mdl", entity = "fas2_ammobox", price = 250, amount = 1, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("FAMAS", { model = "models/weapons/w_rif_famas.mdl", entity = "fas2_famas", price = 1500, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("G36C", { model = "models/weapons/w_rif_m4a1.mdl", entity = "fas2_g36c", price = 1700, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("G3A3", { model = "models/weapons/w_rif_ak47.mdl", entity = "fas2_g3", price = 2700, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("Raging Bull", { model = "models/weapons/w_357.mdl", entity = "fas2_ragingbull", price = 1200, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("Glock 20", { model = "models/weapons/w_pist_glock18.mdl", entity = "fas2_glock20", price = 1000, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("IMI Desert Eagle", { model = "models/weapons/w_pist_deagle.mdl", entity = "fas2_deagle", price = 1550, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("IMI Uzi", { model = "models/weapons/w_smg_mp5.mdl", entity = "fas2_uzi", price = 2300, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M14", { model = "models/weapons/w_snip_awp.mdl", entity = "fas2_m14", price = 4600, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M911", { model = "models/weapons/w_pist_p228.mdl", entity = "fas2_m1911", price = 950, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M21", { model = "models/weapons/w_snip_awp.mdl", entity = "fas2_m21", price = 3900, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M24", { model = "models/weapons/w_snip_awp.mdl", entity = "fas2_m24", price = 4600, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M3 Super 90", { model = "models/weapons/w_shot_m3super90.mdl", entity = "fas2_m3s90", price = 3700, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M4A1", { model = "models/weapons/w_rif_m4a1.mdl", entity = "fas2_m4a1", price = 3500, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("M82", { model = "models/weapons/w_snip_sg550.mdl", entity = "fas2_m82", price = 6500, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("MP5A5", { model = "models/weapons/w_smg_mp5.mdl", entity = "fas2_mp5a5", price = 2800, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("MP5K", { model = "models/weapons/w_smg_mp5.mdl", entity = "fas2_mp5k", price = 2600, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("OTs-33 Pernach", { model = "models/weapons/world/pistols/ots33.mdl", entity = "fas2_ots33", price = 1100, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} }) DarkRP.createShipment("Raging Bull", { model = "models/weapons/w_357.mdl", entity = "fas2_ragingbull", price = 1200, amount = 10, seperate = false, pricesep = nil, noship = false, VIPOnly = false, allowed = {TEAM_GUND} })[/code] Thanks for helping!
VIPOnly isn't a shipment flag unless you defined it, if not, post any errors you're getting.
[QUOTE=LUModder;45879924]VIPOnly isn't a shipment flag unless you defined it, if not, post any errors you're getting.[/QUOTE] I will remove those and see if any thing changes. Thanks! also, it's not giving any errors. They just won't show up. [editline]3rd September 2014[/editline] So i changed it and nothing happened. My custom jobs, shipments and my hud are not working. please help
[QUOTE=l3gionaires;45883389]I will remove those and see if any thing changes. Thanks! also, it's not giving any errors. They just won't show up. [editline]3rd September 2014[/editline] So i changed it and nothing happened. My custom jobs, shipments and my hud are not working. please help[/QUOTE] Still no errors? You should be getting errors if nothing is showing up.
nah no errors. gonna try wiping my server and add stuff back in one addon at a time. hopefully that will show me what's causing my Darkrp mod folder to not work.
[QUOTE=l3gionaires;45885751]nah no errors. gonna try wiping my server and add stuff back in one addon at a time. hopefully that will show me what's causing my Darkrp mod folder to not work.[/QUOTE] No, that never works unless you are getting errors. Just back up your stuff and readd a clean DarkRP Mod folder then add stuff from the backups.
Usually when nothing works it's just a simple error throughout anything that was coded wrong. I've had tons and tons of problems with darkrp just from simple tweaks
I found it, after a wipe and adding mods 1 by 1 i found that 3dcardealer 2 was my problem, for some reason it caused the darkrp mod file to stop working
Sorry, you need to Log In to post a reply to this thread.