rendered paste body// ==UserScript==
// @name Scroll Down Damn It!
// @namespace userscripts.org
// @description Automatically scroll down the Eternia Games shoutbox widget. Tested and working on Google Chrome
// @include http://forum.eterniagames.com/*
// @match http://forum.eterniagames.com/*
// @author CanidDog/Foxhound22003
// @version 0.2.0
// ==/UserScript==
var CHAT_BOX = document.getElementById('cybcb_messagearea');
window.onLoad = setInterval(scrollDownDamnIt,500);
function scrollDownDamnIt() {CHAT_BOX.scrollTop = CHAT_BOX.scrollHeight;}