How would I go about fixing this for all the players trying to join my server. I know the command for me but most people dont know to do that and my server has no people on it because they always crash before joining and its because gmod is broken. Please help me fix this.
Stop using this section like a dump for all of [i]your[/i] questions.
What section should I use sir?[QUOTE=Bletotum;37694021]Stop using this section like a dump for all of [i]your[/i] questions.[/QUOTE]
[QUOTE=TheDivinity;37580090]Sv_loadingurl " " should make it so people don't crash, when they join your server, but I'm not completely sure.
Edit: Yeah, seems to be working for me. Would just make sure you don't have anything Html related on PlayerInitialSpawn.[/QUOTE]
As for where to ask questions, it would be better to put Lua questions in this thread: [url]http://facepunch.com/showthread.php?t=1160598[/url]
[QUOTE=Greetings;37694311]As for where to ask questions, it would be better to put Lua questions in this thread: [url]http://facepunch.com/showthread.php?t=1160598[/url][/QUOTE]
what he said, and disable anything that uses html
like an motd
I've disabled everything maybe it will work thank you all for your help though and next time i'll post in a different section
put this in autoexec.cfg OR server.cfg
sv_loadingurl " "
That'll stop people crashing as soon as they join, then i assume you can do something like this (below) to stop them crashing from anything HTML you have ingame.
[lua]
local function StopHTMLCrashes(ply)
ply:SendLua([[RunConsoleCommand('vgui_allowhtml', '0']])
end
hook.Add("PlayerInitialSpawn", "StopHTMLCrashes", StopHTMLCrashes)
[/lua]
Sorry, you need to Log In to post a reply to this thread.