Log in
28
June

Basic Captcha

Written by Arcath. No comments Posted in: Programming
Tagged with

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 [...]

20
June

TF2 Server BORKED

Written by Arcath. 1 comment Posted in: Server
Tagged with

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 [...]

13
June

Server Downtime

Written by Arcath. No comments Posted in: Server

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 [...]

10
June

Mani Stats Decoder 2

Written by Arcath. No comments Posted in: Programming
Tagged with , ,

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'];
[...]

09
June

Mani Stats Decoder

Written by Arcath. No comments Posted in: Programming
Tagged with , , ,

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 [...]