This types your pin in, read the title, nerd.
// ==UserScript==
// @name Neopets PIN Autotyper
// @namespace https://greasyfork.org/en/users/200321-realisticerror
// @version 1.11
// @description This types your pin in, read the title, nerd.
// @author RealisticError (Clraik)
// @match https://www.neopets.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var pin = "xxxx"; //Type pin in here
if($("#pin_field").val() !== 'undefined'){
$("#pin_field").val(pin);
}
})();