Adds amount of np in shop till to top of page
// ==UserScript==
// @name Neopets - Add Shop Till
// @namespace userscripts.org
// @description Adds amount of np in shop till to top of page
// @include http://www.neopets.com/*
// @include www.neopets.com/*
// @include *neopets.com/*
// @require http://code.jquery.com/jquery-latest.min.js
// @version 1.5
// ==/UserScript==
GM_xmlhttpRequest({
method: "GET",
url: "http://www.neopets.com/market.phtml?type=till",
onload: function(response) {
GM_setValue("tillSource",response.responseText);
}
});
$source = GM_getValue("tillSource");
$start = $source.indexOf("You currently have ");
$start = $start + 19;
$end = $source.indexOf(" in your till.");
$till = $source.substring($start,$end);
$till = $till.replace('<b>','');
$till = $till.replace(' NP</b>','');
$("span:contains('|'):eq(1)").prepend(" | ST: <a href='/market.phtml?type=till'>" + $till+ "</a> ");