var fDesc=new Array();
fDesc[0] = "StatFortress utilizes (and banks on) the fact that every Source game can write its console output to a file in real-time. StatFortress listens for changes to the log file of the game (which contains kill information, among other things), and updates itself accordingly.
StatFortress can display the following information:
-Kills (including Crits (shown in brackets))
-Kills Per Minute (KPM)
-Deaths (including Deaths via Crit (shown in brackets))
-Deaths Per Minute (DPM)
-Kill/Death Ratio
-Crit-Kill Percentage
-Crit-Death Percentage
-“Dominated” Player (Person you killed the most)
-“Nemesis” Player (Person who killed you the most)
-“Best Weapon” (Weapon you’ve got the highest kill-count with)
-“Died Most From” (Weapon you’ve died most from)";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}