As some of you know, I’m working on an Rcon Manger for COD4/5. Some of you want to know how I am parsing/prepping the command to be sent. I’ll share with you my method of parsing the command. I don’t want to divulge too much information as I’m not done with the project yet.
public byte[] prepCommand(string command)
{
byte[] bufferTemp = Encoding.ASCII.GetBytes(command);
byte[] bufferSend = new byte[bufferTemp.Length + 4];
//intial 5 characters as per standard
bufSend[0] = byte.Parse("255");
bufSend[1] = byte.Parse("255");
bufSend[2] = byte.Parse("255");
bufSend[3] = byte.Parse("255");
//copying bytes from rcon to send buffer
int j = 4;
for (int i = 0; i < bufferTemp.Length; i++)
{
bufferSend[j++] = bufferTemp[i];
}
return bufferSend;
}
Popularity: unranked [?]
Filed under:
Programming, tips
A few of my sites where down for about 11 hours yesterday. This was due to switching servers. The last 3 applications I’ve released has features of storing users favorites, lists and other data to a MySQL DB. The DB was reaching in size of over 2gb and was slowing things down elsewhere. Now we are running a dedicated MySQL server that will not effect my other sites.
XtremeRcon:
XtremeRcon was put on the back-burner for a long time. I’ve recently begin development on the software again. I plan on a new beta in the next.
uStreamer:
Tied up with errors dealing with the very poorly written API from uStream.tv I plan on releasing beta 2 directly after beta 1 of XtremeRcon.
Shyster:
Shyster was an anti-cheat application I was working on for BHD(Blackhawk Down). I stopped playing BHD and stopped working on the project. I’ve started work on this project again.
Popularity: unranked [?]
Ok folks, Beta 1.1 is ready for download. You can donwload it to the left of this post. If you do not have a BETA PASSWORD you must email me: dremation@gmail.com for a password. Otherwise, this beta will not function. Have fun and enjoy the new release.
Popularity: 10% [?]