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!

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

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