Re: Redirector v107.2 GMS! Update!
Would this work for versions below 107?
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Control
Would this work for versions below 107?
Well I think the loopback bypass works for v104+
As for the redirector, all you have to change the version/reversion to make it work with v1.06.
I dunno about below v106, though.
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Yaseen
Well I think the loopback bypass works for v104+
As for the redirector, all you have to change the version/reversion to make it work with v1.06.
I dunno about below v106, though.
Well would the bypass work for below v104? >:P
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Control
Well would the bypass work for below v104? >:P
I don't think so but.. there is always a possibility.
Re: Redirector v107.2 GMS! Update!
@TS,
so I was analyzing the source code of your client and I was just wondering, which packets are these:
Code:
void SendLoginData()
{
PacketWriter writer = new PacketWriter();
writer.WriteShort(0x15);
writer.WriteMapleString(Program.username);
writer.WriteMapleString(Program.password);
outSession.SendPacket(writer.ToArray());
}
void ChannelCompleteLogin()
{
PacketWriter writer = new PacketWriter();
writer.WriteShort(0x28);
writer.WriteInt(charID);
outSession.SendPacket(writer.ToArray());
block = false;
Debug.WriteLine("change channel complete.");
}
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Control
@TS,
so I was analyzing the source code of your client and I was just wondering, which packets are these:
Code:
void SendLoginData()
{
PacketWriter writer = new PacketWriter();
writer.WriteShort(0x15);
writer.WriteMapleString(Program.username);
writer.WriteMapleString(Program.password);
outSession.SendPacket(writer.ToArray());
}
void ChannelCompleteLogin()
{
PacketWriter writer = new PacketWriter();
writer.WriteShort(0x28);
writer.WriteInt(charID);
outSession.SendPacket(writer.ToArray());
block = false;
Debug.WriteLine("change channel complete.");
}
LOGIN_PASSWORD: 0x15
PLAYER_LOGGED_IN: 0x28
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
sunnyboy184
LOGIN_PASSWORD: 0x15
PLAYER_LOGGED_IN: 0x28
Thanks :D
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Control
Thanks :D
Yeah.. You're welcome. :cool:
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
sunnyboy184
Yeah.. You're welcome. :cool:
error when trying to inject the dll? how?
Re: Redirector v107.2 GMS! Update!
Need help. It always says.
Error when trying to inject the dll.
Got both, the redirector and the dll in the MapleStory path
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Chazz
Need help. It always says.
Error when trying to inject the dll.
Got both, the redirector and the dll in the MapleStory path
Quote:
Originally Posted by
davidling
error when trying to inject the dll? how?
Make sure that either the .dll is still named ExliveMS or change the name it checks for in the redirector.
Re: Redirector v107.2 GMS! Update!
Already tried both methods.
Deactivating Antivir also done.
(I also tried to rename ArcaneMS.dll to ExliveMS.dll lol)
Edit: Fixed it. But now it stucks at login screen :(
Re: Redirector v107.2 GMS! Update!
Quote:
Originally Posted by
Control
Would this work for versions below 107?
Yes, but you'd have to "downgrade" it.
Re: Redirector v107.2 GMS! Update!
How can I make it for v104?
In v104
void SendLoginData()
{
PacketWriter writer = new PacketWriter();
writer.WriteShort(0x15);
writer.WriteMapleString(Program.username);
writer.WriteMapleString(Program.password);
outSession.SendPacket(writer.ToArray());
}
Should be like
void SendLoginData()
{
PacketWriter writer = new PacketWriter();
writer.WriteShort(0x01);
writer.WriteMapleString(Program.username);
writer.WriteMapleString(Program.password);
outSession.SendPacket(writer.ToArray());
}
I think
Re: Redirector v107.2 GMS! Update!
how to fix the .dll inject error?