Quantcast
Channel: RaGEZONE - MMO Development Forums
Viewing all articles
Browse latest Browse all 30676

v142.2 Redirector and login issues

$
0
0
I've setup everything and used the netsh command, I launch gamelauncher.exe and when I get to login screen I get disconnected ''You have been disconnected from the login server'' error. My players get the same error too. All my redirector files are good, request them if you want. I'm using Hawt's redirector. Take a look at my files here :

I added this so I could auto-login with GameLauncher.exe (Current password is in plaintext, however if I put the SHA1'd pass in CLIENT_START, the login button freezes?! wtf)
Code:

            case CLIENT_START:
              c.login("xxx", "xxx", false);
              c.getSession().write(LoginPacket.getAuthSuccessRequest(c));
              break;

Here is my LOGIN_REDIRECTOR
Code:

                case LOGIN_REDIRECTOR:
                System.out.println(c.getSessionIPAddress() + " attempting to connect!");
                String username = slea.readMapleAsciiString(); // lol
                c.loginData(username);
                c.getSession().write(LoginPacket.getAuthSuccessRequest(c));
                System.out.println(c.getSessionIPAddress() + " Connected!");
                break;

Here is my RecvPacketOpCode.java (only the beginning)
Code:

    PONG(false),
    CLIENT_HELLO(false),
    LOGIN_REDIRECTOR(false),
    LOGIN_PASSWORD(false),
    CLIENT_START(false),
    LOGIN_PASSWORD2(false),
    CLIENT_AUTH(false),
    SEND_ENCRYPTED(false),
    CLIENT_ERROR(false),

And finally, here is the famous bat error I get when me or the players try to login.


There is no CLIENT_START or anything in the bat, does it have issues sending packets or what? I've been trying to figure this out for a long time now and I really need some help..


@Fraysa I would REALLY like if you could take a look at this!!n

Viewing all articles
Browse latest Browse all 30676


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>