Copy and past the code into a text document and save it as journalviewer.html or something like that and place it on your desktop for easy finding.
You will need to obtain your personal api to insert it into the script.
Refresh information can also be changed by editing the Meta Tag to what ever you want it to be.
<META HTTP-EQUIV='refresh' content=10> ( change content=10 to any number of seconds between refresh generally greater than 7 for best usage as it does take a moment for data to pull from api )
Known issues ( auto scroll to end feature ) still buggy and does not see where last line data is when the full page has not been filled with data ( the longe you stay logged in the more lines will be available and then the auto scroll feature works fine )
If we have any html - java tech savy individuals who would like to help further develop this project please drop me a pm on the forums or in game .
Code: Select all
<HTML>
<HEAD>
<TITLE>Journal Viewer for Excelsior</TITLE>
<META HTTP-EQUIV='refresh' content=10>
</HEAD>
<script language=JavaScript>
function ScrollDown() {
window.scrollBy(0,1000);
scrolldelay = setTimeout('pageScroll()',10);
}
window.onload=ScrollDown;
</script>
<div style="height: 1028px;">
<iframe src="http://shard.uoex.net:61/api/Journal?Key=INSERT YOUR API KEY HERE WITH DASH INCLUDED" frameborder="0" scrolling="no" marginwidth="0" marginheight="100%" width="100%" height="1028px" style="padding: 0; margin: 0; border: 0;"></iframe>
</div>
</html>