• 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!

Bug anyone knows what is this?

CheatsBCN

New Member
Joined
Mar 6, 2012
Messages
131
Reaction score
1
I have a warning that says

[warning - protocol::RSA_decrypt] First byte !=0

each 10 secondss what does it means?
 
Usually happens when someone in your server is using a bot.

Although I did find this in protocol.cpp...
Lua:
if(msg.GetByte() != 0){
#ifdef __DEBUG_NET_DETAIL__
		std::cout << "Warning: [Protocol::RSA_decrypt]. First byte != 0" << std::endl;
#endif
		return false;
	}

	return true;
 
As WD said it is often displayed to people who use the BOT to harm the client, or when downloading servers that are damaged troughout their time of existance.
 
You can disable it in the sources, as stated by Tai, it's when someone is using a bot, or a stuff like that.
 
You can delete the message in sources, protocol.cpp

[cpp] std::clog << "[Warning - Protocol::RSA_decrypt] First byte != 0";
int32_t ip = getIP();
if(ip)
std::clog << " (IP: " << convertIPAddress(ip) << ")";

std::clog << std::endl;
return false;[/cpp]
 
Back
Top