Skip to content

Instantly share code, notes, and snippets.

@Drashian
Drashian / improbable_quest_tracker.user.js
Created November 16, 2010 17:52
Improbable Quest Tracker
// ==UserScript==
// @name Improbable Quest Tracker
// @namespace http://www.shadedraco.com/improbablequests
// @include http://improbableisland.com/*
// @include http://www.improbableisland.com/*
// ==/UserScript==
var Content = document.evaluate("//td[@class='content']", document, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue;
if (Content) {
@Drashian
Drashian / improbable_truancy_meter.user.js
Created October 13, 2010 18:39
Improbable Truancy Meter
// ==UserScript==
// @name Improbable Truancy Meter
// @namespace http://www.shadedraco.com/improbabletruancy
// @include http://improbableisland.com/*
// @include http://www.improbableisland.com/*
// ==/UserScript==
var CharInfo = document.evaluate("//table[@class='charinfo']", document, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue;
if (CharInfo) {
var LevelRow = document.evaluate("//td[@class='charinfo']/b/span[@class='colLtWhite'][text()='Level']/../../..", CharInfo, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue;