psgt58 Posted March 31, 2015 Posted March 31, 2015 (edited) Hello, I'm looking for some option to proxy servers on my list of gameservers (L2J). I have a dedicated server with L2jaCis. I have two VPS servers for use as proxies (Brazil - Canada). Any can make proxies for L2J? Example: Image: http://s2.subirimagenes.com/imagen/previo/thump_9350354proxy.png Thanks! Edited March 10, 2016 by psgt58 Quote
0 kyosume Posted March 31, 2015 Posted March 31, 2015 Have you tried adding it into the gamservers.sql? Quote
0 psgt58 Posted March 9, 2016 Author Posted March 9, 2016 (edited) Today 2016, someone knows how to do proxy game servers in l2j? Edited March 9, 2016 by psgt58 Quote
0 Asmodeus Posted March 9, 2016 Posted March 9, 2016 I have explained it dozens of times. Here's my quote from acis forums. While loading remove everything except StringUtil.printSection("Login"); _loginThread = LoginServerThread.getInstance(); _loginThread.start(); register gameserver and use the hexid of the registered gameserver.Edit config and put the ip of the proxy.Setup proxy to point to original ip :-) Quote
0 psgt58 Posted March 11, 2016 Author Posted March 11, 2016 I have explained it dozens of times. Here's my quote from acis forums. While loading remove everything except StringUtil.printSection("Login"); _loginThread = LoginServerThread.getInstance(); _loginThread.start(); register gameserver and use the hexid of the registered gameserver. Edit config and put the ip of the proxy. Setup proxy to point to original ip :-) Can you help us to make it works? we can't. Quote
0 SweeTs Posted April 24, 2016 Posted April 24, 2016 http://acis.i-live.eu/index.php?topic=8728.msg46216#msg46216 Quote
0 GameMasterBR Posted October 10, 2016 Posted October 10, 2016 is a good question, does anyone know how to do it? Quote
0 Red-Hair-Shanks Posted October 14, 2016 Posted October 14, 2016 http://acis.i-live.eu/index.php?topic=8728.msg46216#msg46216 sweets have answer. Quote
0 wongerlt Posted March 21, 2017 Posted March 21, 2017 (edited) im tested with it: serverlist.java for (GameServerInfo gsi : GameServerTable.getInstance().getRegisteredGameServers().values()) { if (gsi.getStatus() == ServerStatus.STATUS_GM_ONLY && client.getAccessLevel() > 0) { // Server is GM-Only but you've got GM Status addServer("IP ADDRESS", gsi.getPort(), gsi.isPvp(), gsi.isTestServer(), gsi.getCurrentPlayerCount(), gsi.getMaxPlayers(), false, true, gsi.getStatus(), gsi.getId()); gsi.isTestServer(), gsi.getCurrentPlayerCount(), gsi.getMaxPlayers(), false, true, gsi.getStatus(), gsi.getId()+1); } else if (gsi.getStatus() != ServerStatus.STATUS_GM_ONLY) { // Server is not GM-Only addServer("IP ADDRESS MAIN", gsi.getPort(), gsi.isPvp(), gsi.isTestServer(), gsi.getCurrentPlayerCount(), gsi.getMaxPlayers(), false, true, gsi.getStatus(), gsi.getId()); addServer("PROXY IP ADDRESS", gsi.getPort(), gsi.isPvp(), gsi.isTestServer(), gsi.getCurrentPlayerCount(), gsi.getMaxPlayers(), false, true, gsi.getStatus(), gsi.getId()+1); } else { // Server's GM-Only and you've got no GM-Status addServer(client.usesInternalIP() ? gsi.getInternalHost() : gsi.getExternalHost(), gsi.getPort(), gsi.isPvp(), gsi.isTestServer(), gsi.getCurrentPlayerCount(), gsi.getMaxPlayers(), gsi.isShowingBrackets(), gsi.isShowingClock(), ServerStatus.STATUS_DOWN, gsi.getId()); } } i tested it with FailOver IP , idk its same like proxy or no :D And in server network configs use where u can `*` Edited March 21, 2017 by wongerlt Quote
0 Rootware Posted July 22, 2017 Posted July 22, 2017 My uLogin project (Universal Login Server) will be provide proxy option aswell. The project will be distributed as a freemium. Follows for the news in blog. Quote
Question
psgt58
11 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.