var fDesc=new Array(); fDesc[0] = "This program implements an AI (Artificial Intelligence) for some of the most popular Half-Life mods (FA, FLF, CS, DoD).
Main Features:
- DoD: V2.0 fully supported (all weapons classes)
- DoD: added special MG handling
- DoD: added bomb goal and wpt
- DoD: added new proning tactics
- FA: added flag goal and push wpt
- FA: bots ow use ammoboxes
- FA: fixed ak47 bug
- FA: new prone algorithm
- FA: added new dodge-for-cover code
- FA: fixed reloading bug"; 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 = ''; } }