I have spent allot of time recently writing a new CMS for arcath.net. And as part of it i decided that it would be nice to have a CAPTCHA image.
At first i searched the internet for a pre written block of code that would let generate one for me. I Found a couple of good [...]
The observant among you will notice that i am writing this 10 hours and 20mins before the LAN Party, which sorta shows the amount of work im doing now, and why im up at 11:40 server admining.
Basically i managed to corrupt the TF2 Server, and the first thing i did when i relalised it was [...]
The Server that hosts this blog (Whitefall) is going to be intermitantly offline between the 16th June and the 20th June, it will then be off for the 21st and 22nd of June.
This downtime is because of the latest LAN Party, I need to test the TF2 server without the internet which means that the [...]
After having a few practice matches on the TF2 server i noticed that although the stats decoder worked, it gave the output in alphabetical order, which isnt what i wanted. So i came up with this:
//Now that we have the array lets order them by rank!
$temp1=$players;
$temp2=array();
for($i=2;$i<=count($temp1)+1;$i++){
$rank=$temp1[$i]['rk'];
[...]
For the Game Server Stats i needed to decode the mani stats file that was generated for CSS and TF2. When i looked at the stats file i noticed that the record for each player varied in length, this is because the mani admin plugin will not store stats for GunA if i have never [...]