• Redirect to another server.
    3 replies, posted
Hello, I had a 32 slots server but because it was most of time full I upgraded to another host with 50 slots. So now I have the problem that I have to let them know the new server. I can simply put in the server name: moved to another host (ip) But is there some addon that redirects to my new server automatically? Thank you
A simple way would be popping up an HTML panel when they spawn with a button to join your other server. steam://connect/ip
[QUOTE=Crazy Quebec;17759153]A simple way would be popping up an HTML panel when they spawn with a button to join your other server. steam://connect/ip[/QUOTE] This is possibly the worst way you could do it. Try this. (Replace 1.1.1.1:27015 with your new server's IP) [lua]--goes in autorun/redirect.lua if SERVER then AddCSLuaFile"autorun/redirect.lua" else hook.Add("InitPostEntity","redirect",function() RunConsoleCommand"connect 1.1.1.1:27015" end) end[/lua]
[QUOTE=Lexic;17760779]This is possibly the worst way you could do it. Try this. (Replace 1.1.1.1:27015 with your new server's IP) [lua]--goes in autorun/redirect.lua if SERVER then AddCSLuaFile"autorun/redirect.lua" else hook.Add("InitPostEntity","redirect",function() RunConsoleCommand"connect 1.1.1.1:27015" end) end[/lua][/QUOTE] It should be : [lua]RunConsoleCommand("connect", "1.1.1.1:27015")[/lua] [/nitpicking] Sorry, can't get away without using the parenthesis this time. :smile:
Sorry, you need to Log In to post a reply to this thread.