• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling Enable TFS 0.4 to run with Plain encryption passwords

_Arthur

Joined
Oct 22, 2009
Messages
2,190
Reaction score
143
Just wondering where I would fix the TFS default-block for plain encrypted passwords in the source(c++).
 
Hello,

Using plain password is unsecure for you players...

Remove in otserv.cpp
Code:
                        << "> WARNING: This method is completely unsafe!" << std::endl
                        << "> Please set encryptionType = \"sha1\" (or any other available method) in config.lua" << std::endl;
                boost::this_thread::sleep(boost::posix_time::seconds(30));
 
Hello,

Using plain password is unsecure for you players...

Remove in otserv.cpp
Code:
                        << "> WARNING: This method is completely unsafe!" << std::endl
                        << "> Please set encryptionType = \"sha1\" (or any other available method) in config.lua" << std::endl;
                boost::this_thread::sleep(boost::posix_time::seconds(30));

Thanks, sir. Repped.


EDIT: Will this also enable the server to run accordingly?
 
Back
Top