how to turn on md5 for my server ?

I believe in login-server.conf

use_MD5_passwords: no

Then you have this as well: ( I think this is what you wanted though, which sevenz posted below)

Code:
// Client MD5 hash check// If turned on, the login server will check if the client's hash matches// the value below, and will not connect tampered clients.// Note: see docmd5_hashcheck.txt for more details.client_hash_check: off// Client MD5 hashes// A player can login with a client hash at or below the account group_id.// Format: group_id, hashclient_hash: 0, 113e195e6c051bb1cfb12a644bb084c5client_hash: 99, cb1ea78023d337c38e8ba5124e2338ae
 
Last edited by a moderator:
^^ great so fast
default_smile.png


thnx

 
in login-server.conf

find the line 

Code:
// Client MD5 hash check// If turned on, the login server will check if the client's hash matches// the value below, and will not connect tampered clients.// Note: see docmd5_hashcheck.txt for more details.client_hash_check: off// Client MD5 hashes// A player can login with a client hash at or below the account group_id.// Format: group_id, hashclient_hash: 0, 113e195e6c051bb1cfb12a644bb084c5client_hash: 99, cb1ea78023d337c38e8ba5124e2338ae
 
that 0 and 99,

you use a md5 hash tool on the client. You put those values into the respected fields. Therefore, only that client can be used

 
Calculate the md5 hash for your client. For example, here: http://onlinemd5.com/

You'll get a file checksum for md5. Then simply copy that checksum on your configuration.

 
Back
Top