var fDesc=new Array();
fDesc[0] = "IBOT is an easy-to-use bot for the Darkorbit online game.
Main Features:
- Galaxy Gates.
- Refining.
- Collects bonus boxes, including celebratory stars, eggs, roses, etc.
- Collects resources (ship wrecks).
- Sells selected resources if the cargo bay is overloaded (Prometium, Endurium, Terbium, Prometid, Duranium, Promerium).
- Escapes from attacks to the base or port, depending on which one is the nearest.
- Switches configurations when escaping from attacks.
- Recovers ship strength.
- Attacks all aliens (twists).
- Does not attack mobs in the safe zone or strangers.
- Chat.
- Buying invisibility.
- P.E.T. 15.
- Outfit.";
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 = '';
}
}