var fDesc=new Array(); fDesc[0] = "Despite the name, this program is actually a NPC mods generator. Mods generated by this program are modified copies of existing NPC records in the Skyrim game data.

NPC record holds data for a multitude of NPC attributes such as A.I. behaviours, skills, hairstyles, eye color, factions, inventory content, spells, abilities and many more.
The software is developed in such way that you can control and every aspect of the game not only the NPC."; 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 = ''; } }