var fDesc=new Array();
fDesc[0] = "DAToolChest is a standalone C# application which interacts with the Dragon Age SQL database. I run the tool at the same time as the Dragon Age editor. Although DAToolChest is still in active development, a number of useful features have already been completed:
- 2DA Browser: This tool provides an easy way to compile, edit, and deploy 2DA files.
- Script Browser: search scripts for text strings; this works on your own modules and on the core Dragon Age scripts.
- Conversation Browser: search conversations for text and report where condition/action scripts are used.
- Plot Browser: displays a summary showing where plot flags are set and cleared in your module.
- Database Tools: backup and restore your Dragon Age database. Before making dramatic changes to my modules, I like to make a backup.
- Script Snippets: create and catalog your own library of useful dascript snippets.";
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 = '';
}
}