Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cadz94/a2d8d8d20a051b3e70b52acb7303e4aa to your computer and use it in GitHub Desktop.
Save cadz94/a2d8d8d20a051b3e70b52acb7303e4aa to your computer and use it in GitHub Desktop.
basic NC trade notifier (DTI update, OWLS report), pop up only
// ==UserScript==
// @name NC trade notifier (DTI update, OWLS report)
// @version 1.0
// @description basic popup on item transfer, that just reminds you to take a look at DTI and update it, and send a trade report, i always forget, this might annoy you if you do lots of non NC trading
// @author cadz
// @match https://www.neopets.com/items/transfer_list.phtml*
// ==/UserScript==
(function() {
// Function to show the popup
function showConfirmation() {
alert("Don't forget to update your Dress to Impress list and report your trade to OWLS if that was NC!");
//if you do a C&P of then anything in the quote marks)
}
// Trigger the popup when the page loads, press ok and it goes away, no other actions
window.addEventListener('load', showConfirmation);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment