In console it says this
[ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 611.
The best help I can give you is this:
There is an opening '{' bracket at line 589, but this bracket is never closed or not closed in time. It was expected to be closed before the 'end' at line 611.
Hints:
- Did you forget a comma?
- All open brackets ({, (, [) must have a matching closing bracket. Are you sure it's there?
- Brackets must be opened and closed in the right order. This will work: ({}), but this won't: ({)}.
------- End of Simplerr error -------
and here is the job
TEAM_TERRIOST = DarkRP.createJob("Terriost", {
color = Color(252, 12, 12, 255),
model = {"models/player/kuma/alqaeda_commando.mdl",
"models/player/kuma/taliban_bomber.mdl",
"models/player/kuma/taliban_rpg.mdl",
"models/player/kuma/taliban_grunt.mdl"},
description = [[You Are A Terriost Do Terror and blow up people you have a 10 minute cooldown]],
weapons = {m9k_ak74,"m9k_suicide_bomb"},
command = "terrorist",
max = 1,
salary = 25,
admin = 0,
vote = false,
hasLicense = false,
candemote = true,
-- CustomCheck
medic = false,
chief = false,
mayor = false,
hobo = false,
cook = false,
category = "Citizens",
customCheck = function(ply) return ply:GetNWString("usergroup") == "bronze" end or ply:GetNWString("usergroup") == "silver" end or ply:GetNWString("usergroup") == "gold" })end
idk how to fix it plz help