Page 3 of 3
Re: 2Login 2GameServer 1PC?
Posted: Fri Jun 24, 2011 9:55 pm
by Szponiasty
O_o
Whats the problem on connecting all your GS to one loginserver? Im using 1 LS for epilogue, freya and h5 gameservers at the same time. No problems at all (ofc u need correct client to enter certain gameserver after logging in, so h5 client to enter h5 gameserver, epilogue to epilogue and so on). The most hard thing you will have to change, it to edit all your gameservers to allow your loginserver "revision". And thats the biggest problem, blocking option to connect different chronicle gs'es to one login server

Just set all GS to allow loginserver rev 0x106 or sth.
Re: 2Login 2GameServer 1PC?
Posted: Wed Jun 29, 2011 3:38 pm
by Nerimah
It's not possible to put 2 login servers without editing client because the client will connect only to port 2106
Re: 2Login 2GameServer 1PC?
Posted: Sun Jul 10, 2011 8:39 pm
by sancak
Szponiasty wrote:O_o
Whats the problem on connecting all your GS to one loginserver? Im using 1 LS for epilogue, freya and h5 gameservers at the same time. No problems at all (ofc u need correct client to enter certain gameserver after logging in, so h5 client to enter h5 gameserver, epilogue to epilogue and so on). The most hard thing you will have to change, it to edit all your gameservers to allow your loginserver "revision". And thats the biggest problem, blocking option to connect different chronicle gs'es to one login server

Just set all GS to allow loginserver rev 0x106 or sth.
??how??

Re: 2Login 2GameServer 1PC?
Posted: Sun Jul 10, 2011 10:46 pm
by Bani
Except if you don't need it to host 2 networks on 1 server just use 1 login server will spare you a lot of trouble except if you want diffrent chronicles.
I believe i haven't found a hosting company yet that doesn't give you at least 2 IPs with your server. That is harder way of doing it but it will work since you can bind each login server to 1 IP and still to port 2106.
Basicly your max number of login servers is the same as number of your IPs on server.
Making it short i suppose

Re: 2Login 2GameServer 1PC?
Posted: Fri Jul 15, 2011 4:44 pm
by Szponiasty
sancak wrote:Szponiasty wrote:O_o
Whats the problem on connecting all your GS to one loginserver? Im using 1 LS for epilogue, freya and h5 gameservers at the same time. No problems at all (ofc u need correct client to enter certain gameserver after logging in, so h5 client to enter h5 gameserver, epilogue to epilogue and so on). The most hard thing you will have to change, it to edit all your gameservers to allow your loginserver "revision". And thats the biggest problem, blocking option to connect different chronicle gs'es to one login server

Just set all GS to allow loginserver rev 0x106 or sth.
??how??

LoginServerThread - modify all ur gameservers to accept ur. loginserver revision. Example:
Code: Select all
switch (packetType) { case 0x00: InitLS init = new InitLS(decrypt); if (Config.DEBUG) _log.info("Init received"); if ((!Config.ID7_OLD_LOGINSERVER_ALLOWED && init.getRevision() != REVISION) || ((Config.ID7_OLD_LOGINSERVER_ALLOWED && _requestID != 7 && init.getRevision() != REVISION) || (Config.ID7_OLD_LOGINSERVER_ALLOWED && _requestID == 7 && init.getRevision() != REVISION_SL2_GRACIAFINAL))) { //TODO: revision mismatch _log.warning("/!\\ Revision mismatch between LS and GS /!\\"); break; }
(GS will accept loginserver rev 0x106 or 0x103 when gameserver ID == 7)
Tere will be small differences within gsauth packet if u plan to use very old login / old gs with new login.
Re: 2Login 2GameServer 1PC?
Posted: Fri Jul 15, 2011 4:47 pm
by jurchiks
I think you could cut down on one check there, like this:
Code: Select all
if ((!Config.ID7_OLD_LOGINSERVER_ALLOWED && init.getRevision() != REVISION) || ((Config.ID7_OLD_LOGINSERVER_ALLOWED && (_requestID != 7 && init.getRevision() != REVISION) || (_requestID == 7 && init.getRevision() != REVISION_SL2_GRACIAFINAL))))
Re: 2Login 2GameServer 1PC?
Posted: Sun Oct 09, 2011 2:41 pm
by Trev
Thanks, this workied perfectly

Re: 2Login 2GameServer 1PC?
Posted: Sat Dec 24, 2011 6:08 pm
by l2chaos
make gameserver2 on one login make database new put in config name make registergameserver change port in gamneserver2 config 9015 and open the server first make databse tables for gameserver two
Re: 2Login 2GameServer 1PC?
Posted: Fri May 24, 2013 12:47 pm
by JavierDC
volviendo a las pistas