And have changed the job script, and when i restart the server its just the default jobs. Note this is not error related somehow becuase i turned on codebug and it shows no sign of errors on bootup relating darkrp modification. If you need any more info ask.
Help! Missing jobs? Help!
-
disrude
- New to forums

- Posts: 5
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Wed Sep 24, 2014 7:05 pm
Help! Missing jobs? Help!
Hello I was wonding if there was a step i was missing in my server, (its a darkrp) I have uploaded darkrpmodification-master to my addons (url : /garrysmod/addons/darkrpmodification-master/lua/ )
And have changed the job script, and when i restart the server its just the default jobs. Note this is not error related somehow becuase i turned on codebug and it shows no sign of errors on bootup relating darkrp modification. If you need any more info ask.
And have changed the job script, and when i restart the server its just the default jobs. Note this is not error related somehow becuase i turned on codebug and it shows no sign of errors on bootup relating darkrp modification. If you need any more info ask.
Re: Help! Missing jobs? Help!
Nvm I got one error [ERROR] addons/darkrpmodification-master/lua/darkrp_customthings/jobs.lua:275: '=' expected near 'which'
1. unknown - addons/darkrpmodification-master/lua/darkrp_customthings/jobs.lua:0
bump
1. unknown - addons/darkrpmodification-master/lua/darkrp_customthings/jobs.lua:0
bump
-
theRadAleks
- This is my homepage

- Posts: 204
- Joined: Wed Feb 19, 2014 6:07 pm
- Location: Dallas, TX
Re: Help! Missing jobs? Help!
Can you post the code of your jobs so i can take a look and see if i can fix the error.
Re: Help! Missing jobs? Help!
/*---------------------------------------------------------------------------
DarkRP custom jobs
---------------------------------------------------------------------------
which
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.
The default jobs can be found here:
https://github.com/FPtje/DarkRP/blob/ma ... elated.lua
For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
Add jobs under the following line:
---------------------------------------------------------------------------*/
TEAM_CITIZEN = DarkRP.createJob("Citizen", {
color = Color(20, 150, 20, 255),
model = {
"models/player/Group01/Female_01.mdl",
"models/player/Group01/Female_02.mdl",
"models/player/Group01/Female_03.mdl",
"models/player/Group01/Female_04.mdl",
"models/player/Group01/Female_06.mdl",
"models/player/group01/male_01.mdl",
"models/player/Group01/Male_02.mdl",
"models/player/Group01/male_03.mdl",
"models/player/Group01/Male_04.mdl",
"models/player/Group01/Male_05.mdl",
"models/player/Group01/Male_06.mdl",
"models/player/Group01/Male_07.mdl",
"models/player/Group01/Male_08.mdl",
"models/player/Group01/Male_09.mdl"
},
description = [[The Citizen is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]],
weapons = {},
command = "citizen",
max = 0,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
candemote = false
})
TEAM_POLICE = DarkRP.createJob("Civil Protection", {
color = Color(25, 25, 170, 255),
model = {"models/player/police.mdl", "models/player/police_fem.mdl"},
description = [[The protector of every citizen that lives in the city.
You have the power to arrest criminals and protect innocents.
Hit a player with your arrest baton to put them in jail.
Bash a player with a stunstick and they may learn to obey the law.
The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
The Battering Ram can also unfreeze frozen props (if enabled).
Type /wanted <name> to alert the public to the presence of a criminal.]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker"},
command = "cp",
max = 4,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
}
})
TEAM_GANG = DarkRP.createJob("Gangster", {
color = Color(75, 75, 75, 255),
model = {
"models/player/Group03/Female_01.mdl",
"models/player/Group03/Female_02.mdl",
"models/player/Group03/Female_03.mdl",
"models/player/Group03/Female_04.mdl",
"models/player/Group03/Female_06.mdl",
"models/player/group03/male_01.mdl",
"models/player/Group03/Male_02.mdl",
"models/player/Group03/male_03.mdl",
"models/player/Group03/Male_04.mdl",
"models/player/Group03/Male_05.mdl",
"models/player/Group03/Male_06.mdl",
"models/player/Group03/Male_07.mdl",
"models/player/Group03/Male_08.mdl",
"models/player/Group03/Male_09.mdl"},
description = [[The lowest person of crime.
A gangster generally works for the Mobboss who runs the crime family.
The Mob boss sets your agenda and you follow it or you might be punished.]],
weapons = {},
command = "gangster",
max = 3,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_MOB = DarkRP.createJob("Mob boss", {
color = Color(25, 25, 25, 255),
model = "models/player/gman_high.mdl",
description = [[The Mob boss is the boss of the criminals in the city.
With his power he coordinates the gangsters and forms an efficient crime organization.
He has the ability to break into houses by using a lockpick.
The Mob boss posesses the ability to unarrest you.]],
weapons = {"lockpick", "unarrest_stick"},
command = "mobboss",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.34,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_GUN = DarkRP.createJob("Gun Dealer", {
color = Color(255, 140, 0, 255),
model = "models/player/monk.mdl",
description = [[A Gun Dealer is the only person who can sell guns to other people.
Make sure you aren't caught selling illegal firearms to the public! You might get arrested!]],
weapons = {},
command = "gundealer",
max = 2,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_MEDIC = DarkRP.createJob("Medic", {
color = Color(47, 79, 79, 255),
model = "models/player/kleiner.mdl",
description = [[With your medical knowledge you work to restore players to full health.
Without a medic, people cannot be healed.
Left click with the Medical Kit to heal other players.
Right click with the Medical Kit to heal yourself.]],
weapons = {"med_kit"},
command = "medic",
max = 3,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_CHIEF = DarkRP.createJob("Civil Protection Chief", {
color = Color(20, 20, 255, 255),
model = "models/player/combine_soldier_prisonguard.mdl",
description = [[The Chief is the leader of the Civil Protection unit.
Coordinate the police force to enforce law in the city.
Hit a player with arrest baton to put them in jail.
Bash a player with a stunstick and they may learn to obey the law.
The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
Type /wanted <name> to alert the public to the presence of a criminal.
Type /jailpos to set the Jail Position]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_deagle2", "stunstick", "door_ram", "weaponchecker"},
command = "chief",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.67,
admin = 0,
vote = false,
hasLicense = true,
ammo = {
["pistol"] = 60,
}
})
TEAM_MAYOR = DarkRP.createJob("Mayor", {
color = Color(150, 20, 20, 255),
model = "models/player/breen.mdl",
description = [[The Mayor of the city creates laws to govern the city.
If you are the mayor you may create and accept warrants.
Type /wanted <name> to warrant a player.
Type /jailpos to set the Jail Position.
Type /lockdown initiate a lockdown of the city.
Everyone must be inside during a lockdown.
The cops patrol the area.
/unlockdown to end a lockdown]],
weapons = {},
command = "mayor",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.89,
admin = 0,
vote = true,
hasLicense = false
})
TEAM_HOBO = DarkRP.createJob("Hobo", {
color = Color(80, 45, 0, 255),
model = "models/player/corpse1.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door]],
weapons = {"weapon_bugbait"},
command = "hobo",
max = 5,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_HITMAN = DarkRP.createJob("Hitman", {
color = Color(80, 45, 0, 255),
model = "models/player/gasmask.mdl",
description = [[You are a hitman, you are hired to kill.]],
weapons = {""},
command = "hitman",
max = 2,
salary = 50,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_THEIF = DarkRP.createJob("Theif", {
color = Color(80, 45, 0, 255),
model = "models/player/artic.mdl",
description = [[You are a theif, You team up together and raid other people's bases.]],
weapons = {""},
command = "theif",
max = 4,
salary = 45,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_PROTHEIF = DarkRP.createJob("Pro Theif", {
color = Color(80, 45, 0, 255),
model = "models/player/artic.mdl",
description = [[You are a pro theif, You team up together and raid other people's bases.]],
weapons = {""},
command = "protheif",
max = 2,
salary = 65,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_PROHITMAN = DarkRP.createJob("Pro Hitman", {
color = Color(80, 45, 0, 255),
model = "models/player/gasmask.mdl",
description = [[You are a pro hitman, you are hired to kill.]],
weapons = {""},
command = "prohitman",
max = 1,
salary = 75,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_HOBOKING = DarkRP.createJob("Hobo King", {
color = Color(80, 45, 0, 255),
model = "models/player/charple01.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door. You are also the leader of the homeless]],
weapons = {"weapon_bugbait"},
command = "hoboking",
max = 1,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
Define which team joining players spawn into and what team you change to if demoted
---------------------------------------------------------------------------*/
GAMEMODE.DefaultTeam = TEAM_CITIZEN
/*---------------------------------------------------------------------------
Define which teams belong to civil protection
Civil protection can set warrants, make people wanted and do some other police related things
---------------------------------------------------------------------------*/
GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}
/*---------------------------------------------------------------------------
Jobs that are hitmen (enables the hitman menu)
---------------------------------------------------------------------------*/
DarkRP.addHitmanTeam(TEAM_MOB)
DarkRP custom jobs
---------------------------------------------------------------------------
which
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.
The default jobs can be found here:
https://github.com/FPtje/DarkRP/blob/ma ... elated.lua
For examples and explanation please visit this wiki page:
http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
Add jobs under the following line:
---------------------------------------------------------------------------*/
TEAM_CITIZEN = DarkRP.createJob("Citizen", {
color = Color(20, 150, 20, 255),
model = {
"models/player/Group01/Female_01.mdl",
"models/player/Group01/Female_02.mdl",
"models/player/Group01/Female_03.mdl",
"models/player/Group01/Female_04.mdl",
"models/player/Group01/Female_06.mdl",
"models/player/group01/male_01.mdl",
"models/player/Group01/Male_02.mdl",
"models/player/Group01/male_03.mdl",
"models/player/Group01/Male_04.mdl",
"models/player/Group01/Male_05.mdl",
"models/player/Group01/Male_06.mdl",
"models/player/Group01/Male_07.mdl",
"models/player/Group01/Male_08.mdl",
"models/player/Group01/Male_09.mdl"
},
description = [[The Citizen is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]],
weapons = {},
command = "citizen",
max = 0,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false,
candemote = false
})
TEAM_POLICE = DarkRP.createJob("Civil Protection", {
color = Color(25, 25, 170, 255),
model = {"models/player/police.mdl", "models/player/police_fem.mdl"},
description = [[The protector of every citizen that lives in the city.
You have the power to arrest criminals and protect innocents.
Hit a player with your arrest baton to put them in jail.
Bash a player with a stunstick and they may learn to obey the law.
The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
The Battering Ram can also unfreeze frozen props (if enabled).
Type /wanted <name> to alert the public to the presence of a criminal.]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker"},
command = "cp",
max = 4,
salary = GAMEMODE.Config.normalsalary * 1.45,
admin = 0,
vote = true,
hasLicense = true,
ammo = {
["pistol"] = 60,
}
})
TEAM_GANG = DarkRP.createJob("Gangster", {
color = Color(75, 75, 75, 255),
model = {
"models/player/Group03/Female_01.mdl",
"models/player/Group03/Female_02.mdl",
"models/player/Group03/Female_03.mdl",
"models/player/Group03/Female_04.mdl",
"models/player/Group03/Female_06.mdl",
"models/player/group03/male_01.mdl",
"models/player/Group03/Male_02.mdl",
"models/player/Group03/male_03.mdl",
"models/player/Group03/Male_04.mdl",
"models/player/Group03/Male_05.mdl",
"models/player/Group03/Male_06.mdl",
"models/player/Group03/Male_07.mdl",
"models/player/Group03/Male_08.mdl",
"models/player/Group03/Male_09.mdl"},
description = [[The lowest person of crime.
A gangster generally works for the Mobboss who runs the crime family.
The Mob boss sets your agenda and you follow it or you might be punished.]],
weapons = {},
command = "gangster",
max = 3,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_MOB = DarkRP.createJob("Mob boss", {
color = Color(25, 25, 25, 255),
model = "models/player/gman_high.mdl",
description = [[The Mob boss is the boss of the criminals in the city.
With his power he coordinates the gangsters and forms an efficient crime organization.
He has the ability to break into houses by using a lockpick.
The Mob boss posesses the ability to unarrest you.]],
weapons = {"lockpick", "unarrest_stick"},
command = "mobboss",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.34,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_GUN = DarkRP.createJob("Gun Dealer", {
color = Color(255, 140, 0, 255),
model = "models/player/monk.mdl",
description = [[A Gun Dealer is the only person who can sell guns to other people.
Make sure you aren't caught selling illegal firearms to the public! You might get arrested!]],
weapons = {},
command = "gundealer",
max = 2,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_MEDIC = DarkRP.createJob("Medic", {
color = Color(47, 79, 79, 255),
model = "models/player/kleiner.mdl",
description = [[With your medical knowledge you work to restore players to full health.
Without a medic, people cannot be healed.
Left click with the Medical Kit to heal other players.
Right click with the Medical Kit to heal yourself.]],
weapons = {"med_kit"},
command = "medic",
max = 3,
salary = GAMEMODE.Config.normalsalary,
admin = 0,
vote = false,
hasLicense = false
})
TEAM_CHIEF = DarkRP.createJob("Civil Protection Chief", {
color = Color(20, 20, 255, 255),
model = "models/player/combine_soldier_prisonguard.mdl",
description = [[The Chief is the leader of the Civil Protection unit.
Coordinate the police force to enforce law in the city.
Hit a player with arrest baton to put them in jail.
Bash a player with a stunstick and they may learn to obey the law.
The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
Type /wanted <name> to alert the public to the presence of a criminal.
Type /jailpos to set the Jail Position]],
weapons = {"arrest_stick", "unarrest_stick", "weapon_deagle2", "stunstick", "door_ram", "weaponchecker"},
command = "chief",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.67,
admin = 0,
vote = false,
hasLicense = true,
ammo = {
["pistol"] = 60,
}
})
TEAM_MAYOR = DarkRP.createJob("Mayor", {
color = Color(150, 20, 20, 255),
model = "models/player/breen.mdl",
description = [[The Mayor of the city creates laws to govern the city.
If you are the mayor you may create and accept warrants.
Type /wanted <name> to warrant a player.
Type /jailpos to set the Jail Position.
Type /lockdown initiate a lockdown of the city.
Everyone must be inside during a lockdown.
The cops patrol the area.
/unlockdown to end a lockdown]],
weapons = {},
command = "mayor",
max = 1,
salary = GAMEMODE.Config.normalsalary * 1.89,
admin = 0,
vote = true,
hasLicense = false
})
TEAM_HOBO = DarkRP.createJob("Hobo", {
color = Color(80, 45, 0, 255),
model = "models/player/corpse1.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door]],
weapons = {"weapon_bugbait"},
command = "hobo",
max = 5,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_HITMAN = DarkRP.createJob("Hitman", {
color = Color(80, 45, 0, 255),
model = "models/player/gasmask.mdl",
description = [[You are a hitman, you are hired to kill.]],
weapons = {""},
command = "hitman",
max = 2,
salary = 50,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_THEIF = DarkRP.createJob("Theif", {
color = Color(80, 45, 0, 255),
model = "models/player/artic.mdl",
description = [[You are a theif, You team up together and raid other people's bases.]],
weapons = {""},
command = "theif",
max = 4,
salary = 45,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_PROTHEIF = DarkRP.createJob("Pro Theif", {
color = Color(80, 45, 0, 255),
model = "models/player/artic.mdl",
description = [[You are a pro theif, You team up together and raid other people's bases.]],
weapons = {""},
command = "protheif",
max = 2,
salary = 65,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_PROHITMAN = DarkRP.createJob("Pro Hitman", {
color = Color(80, 45, 0, 255),
model = "models/player/gasmask.mdl",
description = [[You are a pro hitman, you are hired to kill.]],
weapons = {""},
command = "prohitman",
max = 1,
salary = 75,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
TEAM_HOBOKING = DarkRP.createJob("Hobo King", {
color = Color(80, 45, 0, 255),
model = "models/player/charple01.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door. You are also the leader of the homeless]],
weapons = {"weapon_bugbait"},
command = "hoboking",
max = 1,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
Define which team joining players spawn into and what team you change to if demoted
---------------------------------------------------------------------------*/
GAMEMODE.DefaultTeam = TEAM_CITIZEN
/*---------------------------------------------------------------------------
Define which teams belong to civil protection
Civil protection can set warrants, make people wanted and do some other police related things
---------------------------------------------------------------------------*/
GAMEMODE.CivilProtection = {
[TEAM_POLICE] = true,
[TEAM_CHIEF] = true,
[TEAM_MAYOR] = true,
}
/*---------------------------------------------------------------------------
Jobs that are hitmen (enables the hitman menu)
---------------------------------------------------------------------------*/
DarkRP.addHitmanTeam(TEAM_MOB)
-
theRadAleks
- This is my homepage

- Posts: 204
- Joined: Wed Feb 19, 2014 6:07 pm
- Location: Dallas, TX
Re: Help! Missing jobs? Help!
Could you post the job that's on line 275, because that is whats causing the error from what i could tell from your second post of the console message your getting.
Re: Help! Missing jobs? Help!
TEAM_HOBOKING = DarkRP.createJob("Hobo King", {
color = Color(80, 45, 0, 255),
model = "models/player/charple01.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door. You are also the leader of the homeless]],
weapons = {"weapon_bugbait"},
command = "hoboking",
max = 1,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
This is line 261 - 277, hasLicense = false, is 275
color = Color(80, 45, 0, 255),
model = "models/player/charple01.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door. You are also the leader of the homeless]],
weapons = {"weapon_bugbait"},
command = "hoboking",
max = 1,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})
This is line 261 - 277, hasLicense = false, is 275
-
theRadAleks
- This is my homepage

- Posts: 204
- Joined: Wed Feb 19, 2014 6:07 pm
- Location: Dallas, TX
Re: Help! Missing jobs? Help!
Here i edited your job a little, and this worked just fine on my server.
And i also would not recommend making jobs in your gamemode files, for DarkRP 2.5 there is a addon that you should use for editing gamemode files.
You can download it here: https://github.com/FPtje/darkrpmodification
Read more about it here: http://wiki.darkrp.com/index.php/DarkRP:ModifyingDarkRP
Code: Select all
TEAM_HOBOKING = DarkRP.createJob("Hobo King", {
color = Color(80, 45, 0, 255),
model = "models/player/charple01.mdl",
description = [[The lowest member of society. Everybody laughs at you.
You have no home.
Beg for your food and money
Sing for everyone who passes to get money
Make your own wooden home somewhere in a corner or outside someone else's door.
You are also the leader of the homeless.]],
weapons = {"weapon_bugbait"},
command = "hoboking",
max = 1,
salary = 0,
admin = 0,
vote = false,
hasLicense = false,
candemote = true
})You can download it here: https://github.com/FPtje/darkrpmodification
Read more about it here: http://wiki.darkrp.com/index.php/DarkRP:ModifyingDarkRP