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!

Lithium MS cashshop

Custom Title Activated
Loyal Member
Joined
Nov 27, 2009
Messages
1,905
Reaction score
948
make sure your cash shop server is online
 
Upvote 0
Experienced Elementalist
Joined
Aug 30, 2011
Messages
285
Reaction score
81
Cash Shop is working fine. o.o..

The cs works fine.

However if you buy things like miracle cube, then exit -> dc to login screen.

Also if you change job from Demon slayer -> explorer -> dc to login too. (doesn't happen always)
 
Upvote 0
Master Summoner
Loyal Member
Joined
Sep 28, 2008
Messages
599
Reaction score
291
The cs works fine.

However if you buy things like miracle cube, then exit -> dc to login screen.

Code:
public static byte[] sendCSFail(int err) {
        MaplePacketLittleEndianWriter mplew = new MaplePacketLittleEndianWriter();

        mplew.writeShort(SendPacketOpcode.CS_OPERATION.getValue());
        mplew.write(Operation_Code + 95);
        mplew.write(err);
		
	return mplew.getPacket();
}
 
Upvote 0
Back
Top