• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Web C# MapleStory Clientless on GMS v157.3 problem!

Newbie Spellweaver
Joined
Aug 23, 2013
Messages
20
Reaction score
0
After sending the 0x0049 packet (select char packet) = insta disconnect. Has anyone managed to get in game with a clb on gms v.157.3?

Yes I have reviewed the packet structure!

Code:
        public static PacketWriter SelectCharacter(int uid, string pic, string MACaddress, string HWID)
        {
            PacketWriter packet = new PacketWriter();
            packet.WriteShort(SendOps.SELECT_CHARACTER);
            packet.WriteMapleString(pic);
            packet.WriteInt(uid);
            packet.WriteByte(0x00);
            packet.WriteMapleString(MACaddress);
            packet.WriteMapleString(HWID);


            return packet;
        }
 
Experienced Elementalist
Joined
Dec 22, 2008
Messages
215
Reaction score
31
After sending the 0x0049 packet (select char packet) = insta disconnect. Has anyone managed to get in game with a clb on gms v.157.3?

Yes I have reviewed the packet structure!

Code:
        public static PacketWriter SelectCharacter(int uid, string pic, string MACaddress, string HWID)
        {
            PacketWriter packet = new PacketWriter();
            packet.WriteShort(SendOps.SELECT_CHARACTER);
            packet.WriteMapleString(pic);
            packet.WriteInt(uid);
            packet.WriteByte(0x00);
            packet.WriteMapleString(MACaddress);
            packet.WriteMapleString(HWID);


            return packet;
        }
See http://forum.ragezone.com/f692/v157-redirecotr-1040369/
 
Upvote 0
Junior Spellweaver
Joined
Jan 2, 2014
Messages
150
Reaction score
50
Its possible, but no one has publicly released a way to get into game.
 
Upvote 0
Back
Top