MapleSEA is stuck on login screen when login game will stuck [ bottom disbled & can't do every thing!]
Printable View
MapleSEA is stuck on login screen when login game will stuck [ bottom disbled & can't do every thing!]
You need to handle the packet and send the correct getauth
I use packet from this >> http://forum.ragezone.com/f427/131-p...empest-938864/
getAuth and getserlist end and opcode. But when i click login button screen will stuck then i can't do everything
http://i1259.photobucket.com/albums/...abo1/stuck.png
Packet used LOGIN_PASSWORD then stuck :(
Login button is stuck, because the client is waiting for the worldlist to show. Try sending the worldlistend:
Code:writer.writeShort(header);
writer.write(0xFF);
sendPacket();
I think stuck because readMapleAsciiString can't working
http://i1259.photobucket.com/albums/...bo1/stuck2.png
readMapleAsciiString in LittleEndianAccessor
ps.i upgrade from 123 source (ParadiseSEA)Quote:
public final String readMapleAsciiString() { return readAsciiString(readShort());
}
http://forum.ragezone.com/f427/maple...source-936165/
Can you show the packet you received (the one in the screen shot seems weird to me), can't find the Short headers for the MapleString in it 0_0
add something like this:
(idk if this code is correct, i don't like java)
PHP Code:for(byte b : slea) {
System.out.Print(b +"-");
}