• Read Please and Reply
    8 replies, posted
Hello, i need help :P with my server.. when i start it it works fine.. Adminmod = Assmod then when i change the gamemode to Dark RP.. then i got my Cuztimation Jobs.. and when i Press F4 the menu dosent Apear ? Why ? and when i join it and Spawn.. then i spawn with Combine Weapons D: so yeah.. and heres my Shared.Lua [CODE]RPExtraTeams = {} function AddExtraTeam( Name, color, model, Description, Weapons, command, maximum_amount_of_this_class, Salary, admin, Vote, Haslicense, NeedToChangeFrom) if not Name or not color or not model or not Description or not Weapons or not command or not maximum_amount_of_this_class or not Salary or not admin or Vote == nil then local text = "One of the custom teams is wrongly made! Attempt to give name of the wrongly made team!(if it's nil then I failed):\n" .. tostring(Name) print(text) hook.Add("PlayerSpawn", "TeamError", function(ply) if ply:IsAdmin() then ply:ChatPrint("WARNING: "..text) end end) end local CustomTeam = {name = Name, model = model, Des = Description, Weapons = Weapons, command = command, max = maximum_amount_of_this_class, salary = Salary, admin = admin or 0, Vote = tobool(Vote), NeedToChangeFrom = NeedToChangeFrom, Haslicense = Haslicense} table.insert(RPExtraTeams, CustomTeam) team.SetUp(#RPExtraTeams, Name, color) local Team = #RPExtraTeams if SERVER then timer.Simple(0.1, function(CustomTeam) AddTeamCommands(CustomTeam) end, CustomTeam) end return Team end hook.Add("InitPostEntity", "AddTeams", function() if file.Exists("CustomTeams.txt") then RunString(file.Read("CustomTeams.txt")) if SERVER then resource.AddFile("data/CustomTeams.txt") end if CLIENT and not LocalPlayer():IsSuperAdmin() then file.Delete("CustomTeams.txt") end end end) /*-------------------------------------------------------- Default teams. If you make a team above the citizen team, people will spawn with that team! --------------------------------------------------------*/ TEAM_CITIZEN = AddExtraTeam("Citizen", Color(20, 150, 20, 255), "models/player/group01/male_01.mdl", [[The Citizen is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]], {}, "citizen", 0, 45, 0, false, false) TEAM_POLICE = AddExtraTeam("Civil Protection", Color(25, 25, 170, 255), "models/player/police.mdl", [[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]], {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "item_ammo_pistol"}, "cp", 4, 65, 0, true, true) TEAM_GANG = AddExtraTeam("Gangster", Color(75, 75, 75, 255), "models/player/group03/male_01.mdl", [[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.]], {}, "gangster", 3, 45, 0, false, false) TEAM_MOB = AddExtraTeam("Mob boss", Color(25, 25, 25, 255), "models/player/gman_high.mdl", [[The Mobboss is the crimboss 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.]], {"lockpick", "unarrest_stick"}, "mobboss", 1, 60, 0, false, false) TEAM_GUN = AddExtraTeam("Gun Dealer", Color(255, 140, 0, 255), "models/player/monk.mdl", [[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]], {}, "gundealer", 2, 45, 0, false, false) TEAM_MEDIC = AddExtraTeam("Medic", Color(47, 79, 79, 255), "models/player/kleiner.mdl", [[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.]], {"med_kit",}, "medic", 3, 45, 0, false, false) TEAM_COOK = AddExtraTeam("Cook", Color(238, 99, 99, 255), "models/player/mossman.mdl", [[As a cook, it is your responsibility to feed the other members of your city. You can spawn a microwave and sell the food you make: /Buymicrowave]], {}, "cook", 2, 45, 0, 0, false) TEAM_CHIEF = AddExtraTeam("Civil Protection Chief", Color(20, 20, 255, 255), "models/player/combine_soldier_prisonguard.mdl", [[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]], {"arrest_stick", "unarrest_stick", "weapon_deagle2", "stunstick", "door_ram", "weaponchecker", "item_ammo_pistol"}, "chief", 1, 75, 0, false, true, TEAM_POLICE) TEAM_MAYOR = AddExtraTeam("Mayor", Color(150, 20, 20, 255), "models/player/breen.mdl", [[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]], {"item_ammo_pistol"}, "mayor", 1, 85, 0, true, false/*, {TEAM_CHIEF, TEAM_POLICE}*/) /* -------------------------------------------------------- HOW TO MAKE AN EXTRA CLASS!!!! -------------------------------------------------------- You can make extra classes here. Set everything up here and the rest will be done for you! no more editing 100 files without knowing what you're doing!!! Ok here's how: To make an extra class do this: AddExtraTeam( "<NAME OF THE CLASS>", Color(<red>, <Green>, <blue>, 255), "<Player model>" , [[<the description(it can have enters)>]], { "<first extra weapon>","<second extra weapon>", etc...}, "<chat command to become it(WITHOUT THE /!)>", <maximum amount of this team> <the salary he gets>, 0/1/2 = public /admin only / superadmin only, <1/0/true/false Do you have to vote to become it>, true/false DOES THIS TEAM HAVE A GUN LICENSE?, TEAM: Which team you need to be to become this team) The real example is here: it's the Hobo: */ --VAR without /!!! The name the color(what you see in tab) the player model The description TEAM_HOBO = AddExtraTeam("Hobo", Color(80, 45, 0, 255), "models/player/corpse1.mdl", [[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]], {"weapon_bugbait"}, "hobo", 5, 0, 0, false) //No extra weapons say /hobo to become hobo Maximum hobo's = 5 his salary = 0 because hobo's don't earn money. 0 = everyone can become hobo , false = you don't have to vote to become hobo // MAKE SURE THAT THERE IS NO / IN THE TEAM NAME OR IN THE TEAM COMMAND: // TEAM_/DUDE IS WROOOOOONG !!!!!! // HAVING "/dude" IN THE COMMAND FIELD IS WROOOOOOOONG!!!! //ADD TEAMS UNDER THIS LINE: [B][I]TEAM_satan = AddExtraTeam("Satan", Color(125, 0, 0, 255), "models/player/chimpvanzee.mdl", [[Your mother fucking satan! Now go do whatever the hell you want... hehe its a pun.]],{"keys","lockpick","gmod_tool","hl2_combo_fists","unarrest_stick","pocket","weapon_real_cs_scout","weapon_real_cs_elite
The [URL="http://www.facepunch.com/forumdisplay.php?f=337"]"Newbie" questions - Lua scripting[/URL] section is better suited for this issue.
[U][B]Damn me D: now i got sadfaces.....[/B][/U] [highlight](User was banned for this post ("trolling" - Lithifold))[/highlight]
[QUOTE=lilleanders;22702577]so u dont have an answer to this newbi question, is that that ur saying ? HAHAHAHAHAHAHAHAHAHA u can´t answer a newbie question HAHAHAHAHA[/QUOTE] ... I'm not calling it a newbie question, but that's the subforum dedicated to questions like these. If you expect people to help you, stop acting like a goddamn jerk.
[B][U]Damn me D: now i got sadfaces.....[/U][/B]
What the hell is wrong with you illeanders? You probably have very few friends.
He wasn't changing the subject, he was directing you to a place where you would get more help. Being polite goes a long way on the internet especially when you're asking strangers to help you, if that's the sort of reaction you'll give when someone tries to lend a hand I don't see why I or anyone else should help you. And for the record before you say "LOL UR NUB U DNT KNOW", I know the answer to this question but your attitude has caused me to leave this thread without giving you an answer. Good luck in your future endeavours.
[B][U]Damn me D: now i got sadfaces.....[/U][/B] [editline]01:46PM[/editline] [QUOTE=Dashiel;22703856]He wasn't changing the subject, he was directing you to a place where you would get more help. Being polite goes a long way on the internet especially when you're asking strangers to help you, if that's the sort of reaction you'll give when someone tries to lend a hand I don't see why I or anyone else should help you. And for the record before you say "LOL UR NUB U DNT KNOW", I know the answer to this question but your attitude has caused me to leave this thread without giving you an answer. Good luck in your future endeavours.[/QUOTE] can u pleaseeee...... tell me [U][B]"Damn me D: now i got sadfaces....." .... Damn me D: now i got sadfaces..... Damn me D: now i got sadfaces..... Damn me D: now i got sadfaces..... Damn me D: now i got sadfaces.....[/B][/U] [highlight](User was banned for this post ("Extended - spamming" - grea$emonkey))[/highlight]
[QUOTE=lilleanders;22703902][B][U]Damn me D: now i got sadfaces.....[/U][/B] [editline]01:46PM[/editline] can u pleaseeee...... tell me [U][B]"Damn me D: now i got sadfaces....." .... Damn me D: now i got sadfaces..... Damn me D: now i got sadfaces..... Damn me D: now i got sadfaces..... Damn me D: now i got sadfaces.....[/B][/U][/QUOTE] Spammming this won't help you. Just post this in LUA newbie questions. Someone will take a look at this and try to fix this.
Sorry, you need to Log In to post a reply to this thread.