var fDesc=new Array(); fDesc[0] = "SkunkVision is a Decal plugin for making visible in game some things you ordinarily can't see. These include (for now) unclimbable slopes, impassable water, and radar range.

You can also click the green dropdown arrow next to any checkbox to reveal slider controls for adjusting the highlight color for that feature. Click the arrow again to roll up the panel and hide the color controls.

Main features:
-Unclimbable slopes: Highlights those areas of a mountain or cliff that are too steep to climb
-Impassable water: Highlights those areas of open water that are too deep to wade
-Radar range: Draws a semitransparent wall around your character at the limit of your radar range, making objects outside that range appear dimmer
-Dungeon light: Lights up dark dungeon caverns"; 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 = ''; } }