• DarkRP LUA ERROR
    7 replies, posted
Hi im running a darkrp server and something that im not too sure about is causing the error. Im good at lua and html coding. So i made some custom classes and feel free to use them if you want too idc. So heres the script: /*-------------------------------------------------------- Default teams. If you make a team above the citizen team, people will spawn with that team! --------------------------------------------------------*/ TEAM_CITIZEN = AddExtraTeam("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 = 45, admin = 0, vote = false, hasLicense = false, candemote = false }) TEAM_POLICE = AddExtraTeam("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 them with your arrest baton to put them in jail Bash them with a stunstick and they might learn better than to disobey the law. The Battering Ram can break down the door of a criminal with a warrant for his/her arrest. The Battering Ram can also unfreeze frozen props(if enabled). Type /wanted <name> to alert the public to this criminal OR go to tab and warrant someone by clicking the warrant button]], weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker"}, command = "cp", max = 4, salary = 65, admin = 0, vote = true, hasLicense = true, help = LANGUAGE.cophelp }) TEAM_GANG = AddExtraTeam("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 Mobboss sets your agenda and you follow it or you might be punished.]], weapons = {}, command = "gangster", max = 3, salary = 45, admin = 0, vote = false, hasLicense = false }) TEAM_MOB = AddExtraTeam("Mob boss", { color = Color(25, 25, 25, 255), model = "models/player/gman_high.mdl", description = [[The Mobboss is the boss of the criminals in the city. With his power he coordinates the gangsters and forms an efficent crime organization. He has the ability to break into houses by using a lockpick. The Mobboss also can unarrest you.]], weapons = {"lockpick", "unarrest_stick"}, command = "mobboss", max = 1, salary = 60, admin = 0, vote = false, hasLicense = false, help = LANGUAGE.bosshelp }) TEAM_GUN = AddExtraTeam("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. However, make sure you aren't caught selling guns that are illegal to the public. /Buyshipment <name> to Buy a weapon shipment /Buygunlab to Buy a gunlab that spawns P228 pistols]], weapons = {}, command = "gundealer", max = 2, salary = 45, admin = 0, vote = false, hasLicense = false }) TEAM_MEDIC = AddExtraTeam("Medic", { color = Color(47, 79, 79, 255), model = "models/player/kleiner.mdl", description = [[With your medical knowledge, you heal players to proper health. Without a medic, people can not 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 = 45, admin = 0, vote = false, hasLicense = false }) TEAM_CHIEF = AddExtraTeam("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 forces to bring law to the city Hit them with arrest baton to put them in jail Bash them with a stunstick and they might learn better than to disobey 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 this criminal Type /jailpos to set the Jail Position]], weapons = {"arrest_stick", "unarrest_stick", "weapon_deagle2", "stunstick", "door_ram", "weaponchecker"}, command = "chief", max = 1, salary = 75, admin = 0, vote = false, hasLicense = true, NeedToChangeFrom = TEAM_POLICE, help = LANGUAGE.cophelp }) TEAM_MAYOR = AddExtraTeam("Mayor", { color = Color(150, 20, 20, 255), model = "models/player/breen.mdl", description = [[The Mayor of the city creates laws to serve the greater good of the people. 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 = 85, admin = 0, vote = true, hasLicense = false, help = LANGUAGE.mayorhelp }) TEAM_HOBO = AddExtraTeam("Hobo", { color = Color(80, 45, 0, 255), model = "models/player/corpse1.mdl", description = [[The lowest member of society. All people see you laugh. 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 = false }) //ADD CUSTOM TEAMS UNDER THIS LINE: /* -------------------------------------------------------- HOW TO MAKE A DOOR GROUP -------------------------------------------------------- AddDoorGroup("NAME OF THE GROUP HERE, you see this when looking at a door", Team1, Team2, team3, team4, etc.) WARNING: THE DOOR GROUPS HAVE TO BE UNDER THE TEAMS IN SHARED.LUA. IF THEY ARE NOT, IT MIGHT MUCK UP! The default door groups, can also be used as examples: */ AddDoorGroup("Cops and Mayor only", TEAM_CHIEF, TEAM_POLICE, TEAM_MAYOR) AddDoorGroup("Gundealer only", TEAM_GUN) /* -------------------------------------------------------- HOW TO MAKE AN AGENDA -------------------------------------------------------- AddAgenda(Title of the agenda, Manager (who edits it), Listeners (the ones who just see and follow the agenda)) WARNING: THE AGENDAS HAVE TO BE UNDER THE TEAMS IN SHARED.LUA. IF THEY ARE NOT, IT MIGHT MUCK UP! The default agenda's, can also be used as examples: */ AddAgenda("Gangster's agenda", TEAM_MOB, {TEAM_GANG}) AddAgenda("Police agenda", TEAM_MAYOR, {TEAM_CHIEF, TEAM_POLICE}) /* --------------------------------------------------------------------------- HOW TO
Errors?
[QUOTE]No spoiler cause im lazy.[/QUOTE] Is it really that hard to use [noparse][LUA][/LUA][/noparse] tags?
You just want my opinion? [quote]Im good at lua and html coding[/quote] you're wrong oh wait sorry that's not what an opinion is my bad
[QUOTE=Bo98;41176728]Is it really that hard to use [noparse][LUA][/LUA][/noparse] tags?[/QUOTE] [quote]No spoiler cause im lazy.[/quote] Damn, asking this guy to do something would just be tyranny! [editline]25th June 2013[/editline] But seriously, how could we help if you're not even sending us the errors?
Probably be side you're meant to add jobs under the line, not at the bottom of shared.lua .. Also it's probably better to use the way the other jobs are made, not the way you've done it. Even though we haven't got the errors to help you, I'm saying what I see wrong with it
Maybe it should be: [LUA]TEAM_SECRETSERVICE = AddExtraTeam("Secret Service", Color(0,50,100,255), "models/player/Barney.mdl", [[You are with the police. Protect The Mayor At All Costs! The weapons available to buy are Usp & Tmp shipments.]], {"weapon_mp52", "item_ammo_pistol", "weaponchecker"}, "secretservice", 3, 80, 0, false) [/LUA] Instead of: [LUA]TEAM_secretservice = AddExtraTeam("Secret Service", Color(0,50,100,255), "models/player/Barney.mdl", [[You are with the police. Protect The Mayor At All Costs! The weapons available to buy are Usp & Tmp shipments.]], {"weapon_mp52", "iteam_ammo_pistol", "weaponchecker"}, "secretservice", 3, 80, 0, false) [/LUA]
[lua] TEAM_SECRETSERVICE = AddExtraTeam("Secret Service", { color = Color(0,50,100,255), model = "models/player/Barney.mdl", description = [[You are with the police. Protect The Mayor At All Costs! The weapons available to buy are Usp & Tmp shipments.]], weapons = {"weapon_mp52", "iteam_ammo_pistol", "weaponchecker"}, command = "secretservice", max = 3, salary = 80, admin = 0, hasLicense = false })[/lua] Try formatting your content. Makes it easier to change things, and point out errors.
Sorry, you need to Log In to post a reply to this thread.