Tools

The Greasemonkey script to turn the Location string into a shortcut to the related wiki page:

function leftTrim(sString)
{
  while (sString.substring(0,1) == ' ')
  {
    sString = sString.substring(1, sString.length);
  }
  return sString;
}

  var titles = document.getElementsByTagName("title");
  var location = leftTrim(titles[0].innerHTML.split("|", 3)[2]);
  var num = 36860150554;
  if (num > 0) {
    div = document.getElementById("app" + num + "_mapButton");
    if ( div) {
      div = div.nextSibling.nextSibling;
      if (div.innerHTML.match(/^<b>Location: <\/b>/)) {
      div.innerHTML="<B>Location:</B> <a href=\"http://hfwiki.wikidot.com/location:" + location + "\" target=hfwiki>" + location + "</a>";
      }
    }
  }

The following Greasemonkey user scripts are worth looking at, if you're into Greasemonkey:
Hammerfall - Quest
Hammerfall - Character
Hammerfall - Earth Eater

Mostly full-featured Hammerfall RPG Helper for Greasemonkey

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License