- or download this
Logfile Example
"ct1<4><BOT><>" entered the game
"ct1<4><BOT><>" joined team "CT"
...
"terror1<1><BOT><TERRORIST>" killed "ct1<4><BOT><CT>" with "p228"
"ct1<4><BOT><CT>" attacked "terror2<2><BOT><TERRORIST>" with "fiveseve
+n" (damage "12") (damage_armor "2") (health "88") (armor "98")
"ct1<4><BOT><CT>" attacked "terror3<3><BOT><TERRORIST>" with "fiveseve
+n" (damage "13") (damage_armor "0") (health "2") (armor "0")
- or download this
# kill / killed logging
# $1 = killer
...
$players{$1}{"frags"} += 1;
$players{$2}{"deaths"} += 1;
}
- or download this
# The skeleton of each player hash
my %skeleton_player = (
...
$players{$1} = %skeleton_player;
}
}