Hello :D
i using TropikMS Repack and when i typing the pic its quiting the game and saying
"you have been disconnected from the login server please try again later"
How can i fix it?
Maybe its with the ip?
I am using VPS.
Printable View
Hello :D
i using TropikMS Repack and when i typing the pic its quiting the game and saying
"you have been disconnected from the login server please try again later"
How can i fix it?
Maybe its with the ip?
I am using VPS.
same problem
i found a fix add a PIC check to getCharList
Try this, i'm not sure if it can help but give it a try, Go to your serverconstants.java and ENABLE the PIC, doing this will allow you to enter the game. Or if its on try disabling and then compile. Hope I helped.
Code:public static final byte[] getCharList(String secondpw, List<MapleCharacter> chars, int charslots) {
MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();
mplew.writeShort(SendPacketOpcode.CHARLIST.getValue());
mplew.write(0);
mplew.write(chars.size());
for (MapleCharacter chr : chars) {
addCharEntry(mplew, chr, (!chr.isGM()) && (chr.getLevel() >= 30), false);
}
mplew.write((secondpw != null) && (secondpw.length() <= 0) ? 2 : (secondpw != null) && (secondpw.length() > 0) ? 1 : 0);
mplew.write(0);
mplew.writeInt(charslots);
mplew.writeInt(0);
mplew.writeInt(0);
mplew.writeInt(0);
return mplew.getPacket();
}