[Question] MapleSession

Socius Decennalis
Decennium
Joined
Apr 25, 2010
Messages
489
Reaction score
57
Well, I was wondering there a few days ago if it would be possible to send some attribute to MapleServerHandler.java together when localhost.exe starts ? ( I'm sorry if this question and useless )

More the purpose of this is to get my players to access only through the launcher . ( Preventing that malicious people to create the own localhost fleeing checks )

If this is not possible , have any possible method to make my server enable only one type localhost ?
 
Send a packet to the client from your server and a response from the client to the server. If the client does not give a correct response (aka someone else made a different client), close the current session.
 
Upvote 0
I could've sworn Fraysa had released something that did this.. Unless it was someone else, but I didn't think so? It was a custom launcher that sent a type of auth packet to the game server with hashes for WZ's or something and if they weren't sent the server would disconnect their client. You can try looking for a launcher here that does that because I know it was released.
 
Upvote 0
I could've sworn @Fraysa had released something that did this.. Unless it was someone else, but I didn't think so? It was a custom launcher that sent a type of auth packet to the game server with hashes for WZ's or something and if they weren't sent the server would disconnect their client. You can try looking for a launcher here that does that because I know it was released.

Are you talking about this?
 
Upvote 0
I could've sworn Fraysa had released something that did this.. Unless it was someone else, but I didn't think so? It was a custom launcher that sent a type of auth packet to the game server with hashes for WZ's or something and if they weren't sent the server would disconnect their client. You can try looking for a launcher here that does that because I know it was released.

Thanks for answering , I have just one more doubt . Currently working on a v.90 source , where I manages to come the GMS Key to power this launcher Fraysa ?

MapleShark replied with it:

[FFFF | Maple Handshake] 0E 00 5A 00 01 00 33 46 72 7A BE 52 30 78 5F 08
Code:
 MapleKeys.Add(Localisation.Global, 90, 1, new byte[] {
            0x46,
            0x72,
            0x7A,
            0x1A,
            0x52,
            0x30,
            0x78,
            0xD0, 
            });
        }

?
 
Upvote 0
Back