Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Localhost Redirector Tool

Newbie Spellweaver
Joined
Jun 16, 2013
Messages
18
Reaction score
0
i know, but what is purpose ??!
get authentication success request, it enables you to login? It's there by default. I just added in the c.login("admin", "admin", false); above it cos it wasn't there

MapleServerHandler.
Code:
case CLIENT_START:
        c.login("admin", "admin", false);
        c.getSession().write(Loginpacket.getAuthSuccessRequest(c));

It still doesn't work. :/ I'm using anhtan's redirector btw
 
Newbie Spellweaver
Joined
Jun 16, 2013
Messages
18
Reaction score
0
Umm, how do I know if it's wrong? o.o

case LOGIN_REDIRECTOR:
        client_username = slea.readMapleAsciiString();
        c.loginData(client_username);
        System.out.println(client_username);
        c.getSession().write(LoginPacket.getAuthSuccessRequest(c));
        break;
    case PONG:
      c.pongReceived();
      break;
    case STRANGE_DATA:
      break;
    case LOGIN_PASSWORD:
    case LOGIN_PASSWORD2:
    case CLIENT_START: //This one doesn't even get called, but here for safety's sake
      //c.loginData(client_username);
      c.login("admin", "admin", false);
      c.getSession().write(LoginPacket.getAuthSuccessRequest(c));
      break;
    case CLIENT_AUTH:
      byte authid = slea.readByte();
      byte newleft = (byte)(authid >>> 4 & 0xF);
      newleft = (byte)(newleft + (newleft % 2 == 0 ? 1 : -1));
      byte newright = (byte)(authid & 0xF);
      switch (newright) {
 
Last edited:
Newbie Spellweaver
Joined
Jun 16, 2013
Messages
18
Reaction score
0
Check your recvops properties file.
I'm logging in using maplestory's login window and not a redirector's one. Wvs redirector doesn't work for me IF I launch the server first. This is what happens when I launch the server AFTER I launch wvsredirector. ragezone.PNG - Localhost Redirector Tool - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jun 16, 2013
Messages
18
Reaction score
0
CLIENT_HELLO(false),
LOGIN_REDIRECTOR(false),
LOGIN_PASSWORD(false),
CLIENT_START(false),
LOGIN_PASSWORD2(false),
CLIENT_AUTH(false),
SEND_ENCRYPTED(false),
CLIENT_ERROR(false)

false? O..O

Here's my recvops properties .__.

INNER_CIRCULATOR = 223

LOGIN_REDIRECTOR = 0x01
PONG = 0x2D
CLIENT_HELLO = 0x14
LOGIN_PASSWORD = 0x15
#-1
CLIENT_START = 0x37
LOGIN_PASSWORD2 = 0x3D
GUEST_LOGIN = 0x7EFF
SERVERLIST_REQUEST = 0x21
CHARLIST_REQUEST = 0x1B
SERVERSTATUS_REQUEST = 0x1C
REDISPLAY_SERVERLIST = 0x7EFF
VIEW_ALL_CHAR = 0x7EFF
PICK_ALL_CHAR = 0x7EFF
VIEW_SERVERLIST = 0x23
PLAYER_LOGGEDIN = 0x27
CHECK_CHAR_NAME = 0x28
CREATE_CHAR = 0x29
CREATE_ULTIMATE = 0x2a
DELETE_CHAR = 0x2C
CLIENT_AUTH = 0x30
CHAR_SELECT_NO_PIC = 0x31
AUTH_SECOND_PASSWORD=0x34
CHAR_SELECT=0x7EFF
CLIENT_ERROR=0x3E
 
Newbie Spellweaver
Joined
Dec 6, 2013
Messages
8
Reaction score
1
Why do you need this? It only masks/demasks Nexon's IP and starts the game for you, you can do it yourself.

If you dont want to give him whats he need you can just tell him.....
you are selfish. -___-

EDIT: And i need that too whats is your problem to upload to mediafire and give us what we need? -___-
 
Joined
Apr 10, 2008
Messages
4,087
Reaction score
1,264
If you dont want to give him whats he need you can just tell him.....
you are selfish. -___-

EDIT: And i need that too whats is your problem to upload to mediafire and give us what we need? -___-

Maybe because I don't have it? I'm offering a suggestion, because I doubt anyone still has this. If a client is easier, either make a .bat file that does it or make your own program, jesus, it takes literally 1 minute.
 
Initiate Mage
Joined
Mar 4, 2018
Messages
1
Reaction score
0
can someone please reupload this download because I can't get it anymore
 
Back
Top