var fDesc=new Array(); fDesc[0] = "Drakensang Savegame Editor allows you to manipulate most of the character data contained in Drakensang savegames. It has been downloaded more than 30.000 times by now.
Main Features
Edit your main character's name, appearance and money.
Edit any party character's attributes, level, experience, magic, life, talents, special attacks and spells.
Edit inventory items: change armor values, weapon damage and stack count.
All attributes, talents, special attacks, spells and inventory items contain icons and descriptions in the game's language. The editor itself currently ships in German, English and Polish."; 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 = ''; } }