public void ProtocolCrack()
{
// Define Client
var client = new TcpClient();
// Define Stream And Use Client To Get It.
var stream = client.GetStream();
// Define Reader And Use Binaryreader Using The Stream.
var reader = new BinaryReader(stream);
// PolicyCheck.
byte policyCheck = reader.ReadByte();
//TODO Check if it's 60.
// Set as 60 since dom thinks it is.
if (policyCheck != 60)
{
int tMsgLen = reader.ReadInt32();
short tMsgID = reader.ReadInt16();
}
// Send Client Policy.
else
{
ClientUtil.GetHabboClientPolicy();
}
}