Re: DC Screen V110 , v111
looks like your getHello is correct. maybe your getServerIP is wrong? -/shrugs-
make sure you have a sufficient amount of headers updated [the important ones that get you to login screen and past]
also make sure your java JCE stuff for 7 is done. you can't use JCE 6 for 7.
Re: DC Screen V110 , v111
is getserverip v1.11
PHP Code:
public static byte[] getServerIP(final MapleClient c, final int port, final int clientId) {
final MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
mplew.writeShort(SendPacketOpcode.SERVER_IP.getValue());
mplew.writeShort(0);
if (c.getTempIP().length() > 0) {
for (String s : c.getTempIP().split(",")) {
mplew.write(Integer.parseInt(s));
}
} else {
mplew.write(ServerConstants.Gateway_IP);
}
mplew.writeShort(port);
mplew.writeInt(clientId);
mplew.writeZeroBytes(10);
return mplew.getPacket();
}
Re: DC Screen V110 , v111
That will give alot of errors here.
My getServerIP:
PHP Code:
public static MaplePacket getServerIP(InetAddress inetAddr, int port, int clientId) {
MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
mplew.writeShort(SendOpcode.SERVER_IP.getValue());
mplew.writeShort(0);
byte[] addr = inetAddr.getAddress();
mplew.write(addr);
mplew.writeShort(port);
mplew.writeInt(clientId);
mplew.write0(10);
return mplew.getPacket();
}
This is from Oxysoft's thread.
My Opcodes and Revcops are still from v97. Am I allowed to get ingame then? Or do I need to update these first?
Re: DC Screen V110 , v111
Quote:
I use the localhost from Kevin and when I try to connect my server. It will show up the maplestory screen, it will be black for about 10 seconds and than it says: You've been disconnected.
Update PING and PONG, I assume, based on your above statement.
Re: DC Screen V110 , v111
Okay I have now
Quote:
PONG = 0x25
SERVER_IP = 0x12
PING = 0x17
Is this correct for v111?
Re: DC Screen V110 , v111
Quote:
PONG = 0x2E
PING = 0x11
SERVER_IP = 0x0C
post2short
Re: DC Screen V110 , v111
Quote:
Originally Posted by
AuroX
post2short
Thank you :)
This are the correct ones?
How do you get them :S?
Iam using MapleShark and when Iam entering a server nothing happends. Or I will be spammed with packets, How I'll ever find the right packets?
Re: DC Screen V110 , v111
Quote:
Originally Posted by
standeman
Thank you :)
This are the correct ones?
How do you get them :S?
Iam using MapleShark and when Iam entering a server nothing happends. Or I will be spammed with packets, How I'll ever find the right packets?
if you get spammed with packets then you have to know how to sort them. ignore the stuff you'll never use (like hackshield heartbeat), as well as packets you're not going to use at the moment (movement) or packets you already know (ping and pong). it also helps to know what the server sends and how the client reacts to it, so you get a basic idea of what the fuck is going on
Re: DC Screen V110 , v111
Quote:
Originally Posted by
AuroX
post2short
Still not working :(
I will keep dcing at the black screen.
I think there is something wrong with source.