Advertisement
Guest User

Neopets: Wishing Well Userscript

a guest
Sep 3rd, 2018
1,716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1.  
  2. // ==UserScript==
  3. // @author beetl_3
  4. // @name Neopets - Wishing Well Time Saver
  5. // @description Puts item you want in box, automatically puts 21NP in the wishing well donation box.
  6. // @include http://www.neopets.com/wishing.phtml
  7. // @include http://www.neopets.com/wishing.phtml?thanks=21&xt=
  8. // ==/UserScript==
  9.  
  10. var np = 21;
  11. var item = 'Halloween Y14 Goodie Bag';
  12.  
  13. $("input[name='donation']").val(np);
  14. $("input[name='wish']").val(item);
  15. $('[name="amount"]').val(np);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement