var fDesc=new Array();
fDesc[0] = "Get a Life is a FPS Single player action/adventure total-conversion for Half-life 2.
Main features:
- 4 chapters (a total of 20 different maps) offering almost 11 hours of gameplay
- gripping story about the main character Alex Zemlinsky, who is trying to learn everything about his mysterious past
- 13 different weapons, 3 of them upgradable with modules
- unique gameplay:
- enhanced AI (including squads and advanced combat tactics such as taking cover and fear behavior), developed in cooperation with the E.Y.E. mod team
- new healing system with several body damage zones and diseases
- bullet-time system
- survival (fight off waves of enemies coming at you) and sneak passages (making noise).";
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 = '';
}
}