Page 94 of 159 FirstFirst ... 44849293949596104144 ... LastLast
Results 931 to 940 of 1587

Thread: Request a Bot/Feature

  1. #931
    Stocking Anarchy's Avatar
    Joined
    May 2016
    Posts
    1,371
    Userbars
    11
    Thanks
    929
    Thanked
    1,627/650
    DL/UL
    182/0
    Mentioned
    145 times
    Time Online
    47d 8h 56m
    Avg. Time Online
    23m
    Quote Originally Posted by shos View Post
    um, so...I imagine it is very easy to make, considering there's a Pyramids AP and Sakhmet Solitaire AP - a bot that plays scorchy slots and goes for jackpot win?
    I forgot where I got it but this is the one that I use. Three is a url in the namespace but I think the one I have is modified from the original version

    Code:
    // ==UserScript==
    // @(you need an account to see links)          Neopets: Scorchy Slots Autoplayer v2
    // @(you need an account to see links)cription   Holds moneybags, faeries, maps, bells, apples, peaches. Adapted from (you need an account to see links)
    // @(you need an account to see links)space     (you need an account to see links)
    // @include       (you need an account to see links)
    // ==/UserScript==
    
    var x = (Math.random() * 2000); //change the page delay here; 1000 = 1 second
    function delay() {
    
    
    var t1=0; t2=0; t3=0; t4=0;
    var g1=0; g2=0; g3=0; g4=0;
    var f1=0; f2=0; f3=0; f4=0;
    var b1=0; b2=0; b3=0; b4=0;
    var p1=0; p2=0; p3=0; p4=0;
    var a1=0; a2=0; a3=0; a4=0;
    var m1=0; m2=0; m3=0; m4=0;
    
    //////////////////////////////
    
    if(document.body.innerHTML.indexOf('HOLD') != -1){
    	var treasure1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure1.snapshotLength > 0){t1=t1+1;}
    
    	var treasure2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure2.snapshotLength > 0){t2=t2+1;}
    
    	var treasure3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure3.snapshotLength > 0){t3=t3+1;}
    
    	var treasure4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure4.snapshotLength > 0){t4=t4+1;}
    
    //////////////////////////////
    
    	var gold1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold1.snapshotLength > 0){g1=g1+1;}
    
    	var gold2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold2.snapshotLength > 0){g2=g2+1;}
    
    	var gold3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold3.snapshotLength > 0){g3=g3+1;}
    
    	var gold4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold4.snapshotLength > 0){g4=g4+1;}
    
    //////////////////////////////
    
    	var faeries1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries1.snapshotLength > 0){f1=f1+1;}
    
    	var faeries2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries2.snapshotLength > 0){f2=f2+1;}
    
    	var faeries3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries3.snapshotLength > 0){f3=f3+1;}
    
    	var faeries4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries4.snapshotLength > 0){f4=f4+1;}
    
    //////////////////////////////
    
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    
    //////////////////////////////
    
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}	
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}
    
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    
    //////////////////////////////
    	
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    
    //////////////////////////////
    
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	
    //////////////////////////////
    
    // Holds goldbags in case there's one bag, one faerie and one mappiece
    
    	if(g1+g2+g3+g4>=1 && t1+t2+t3+t4<2 && f1+f2+f3+f4<2){
    		if(g1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(g2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(g3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(g4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds maps if there are no bags or faeries
    
    	else if(g1+g2+g3+g4<1 && f1+f2+f3+f4<2 &&t1+t2+t3+t4>=1){	
    		if(t1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(t2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(t3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(t4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds faeries if there are no bags or maps	
    
    	else if(g1+g2+g3+g4<1 && f1+f2+f3+f4>=1 && t1+t2+t3+t4<1){	
    		if(f1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(f2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(f3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(f4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds apples if there are at least two
    
    	else if(a1+a2+a3+a4>=2){	
    		if(a1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(a2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(a3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(a4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}	
    
    // Holds bells if there are at least two
    
    	else if(b1+b2+b3+b4>=2 && p1+p2+p3+p4<=2 && g1+g2+g3+g4<2 && t1+t2+t3+t4<2 && f1+f2+f3+f4<2){	
    		if(b1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(b2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(b3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(b4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds peaches if there are at least two
    
    	else if(p1+p2+p3+p4>=2 && b1+b2+b3+b4<=1 && g1+g2+g3+g4<2 && t1+t2+t3+t4<2 && f1+f2+f3+f4<2){	
    		if(p1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds melons if there are three or more
    
    	else if(m1+m2+m3+m4>=3){	
    		if(p1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    	
    
    }
    
    //////////////////////////////
    
    if(document.body.innerHTML.indexOf('Click Here to Play') != -1){
      var button = document.evaluate('//form[contains(@action,"slots.phtml")]/input[@type = "hidden" and @(you need an account to see links)ue = "yes"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
      button.click();
      button.form.submit();
    }
    
    if(document.body.innerHTML.indexOf('Play Again') != -1){
      var button = document.evaluate('//form[contains(@action,"process_slots2.phtml")]/input[@type = "hidden" and @(you need an account to see links) = "_ref_ck"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
      button.click();
      button.form.submit();
    }
    
    if(document.body.innerHTML.indexOf('Collect Winnings') != -1){
      var button = document.evaluate('//input[@type = "hidden" and @(you need an account to see links)ue = "true" and @(you need an account to see links)="collect"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
      button.click();
      button.form.submit();
    }
    
    }window.setTimeout(delay, x);







  2. The Following 2 Users Say Thank You to Stocking Anarchy For This Useful Post:

    Daviid (09-04-2017),shos (09-04-2017)

  3. #932
    shos's Avatar
    Joined
    Jun 2013
    Posts
    118
    Userbars
    1
    Thanks
    43
    Thanked
    9/8
    DL/UL
    21/0
    Mentioned
    11 times
    Time Online
    2d 11h 30m
    Avg. Time Online
    N/A
    Quote Originally Posted by Stocking Anarchy View Post
    I forgot where I got it but this is the one that I use. Three is a url in the namespace but I think the one I have is modified from the original version

    Code:
    // ==UserScript==
    // @(you need an account to see links)          Neopets: Scorchy Slots Autoplayer v2
    // @(you need an account to see links)cription   Holds moneybags, faeries, maps, bells, apples, peaches. Adapted from (you need an account to see links)
    // @(you need an account to see links)space     (you need an account to see links)
    // @include       (you need an account to see links)
    // ==/UserScript==
    
    var x = (Math.random() * 2000); //change the page delay here; 1000 = 1 second
    function delay() {
    
    
    var t1=0; t2=0; t3=0; t4=0;
    var g1=0; g2=0; g3=0; g4=0;
    var f1=0; f2=0; f3=0; f4=0;
    var b1=0; b2=0; b3=0; b4=0;
    var p1=0; p2=0; p3=0; p4=0;
    var a1=0; a2=0; a3=0; a4=0;
    var m1=0; m2=0; m3=0; m4=0;
    
    //////////////////////////////
    
    if(document.body.innerHTML.indexOf('HOLD') != -1){
    	var treasure1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure1.snapshotLength > 0){t1=t1+1;}
    
    	var treasure2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure2.snapshotLength > 0){t2=t2+1;}
    
    	var treasure3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure3.snapshotLength > 0){t3=t3+1;}
    
    	var treasure4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/mappiece_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (treasure4.snapshotLength > 0){t4=t4+1;}
    
    //////////////////////////////
    
    	var gold1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold1.snapshotLength > 0){g1=g1+1;}
    
    	var gold2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold2.snapshotLength > 0){g2=g2+1;}
    
    	var gold3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold3.snapshotLength > 0){g3=g3+1;}
    
    	var gold4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/baggold_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (gold4.snapshotLength > 0){g4=g4+1;}
    
    //////////////////////////////
    
    	var faeries1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries1.snapshotLength > 0){f1=f1+1;}
    
    	var faeries2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries2.snapshotLength > 0){f2=f2+1;}
    
    	var faeries3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries3.snapshotLength > 0){f3=f3+1;}
    
    	var faeries4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/faerie_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (faeries4.snapshotLength > 0){f4=f4+1;}
    
    //////////////////////////////
    
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    	var bell1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell1.snapshotLength > 0){b1=b1+1;}
    
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	var bell2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell2.snapshotLength > 0){b2=b2+1;}
    	
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    	var bell3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell3.snapshotLength > 0){b3=b3+1;}
    
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    	var bell4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/bell_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (bell4.snapshotLength > 0){b4=b4+1;}
    
    //////////////////////////////
    
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    	var peach1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach1.snapshotLength > 0){p1=p1+1;}
    
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    	var peach2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach2.snapshotLength > 0){p2=p2+1;}
    
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}	
    	var peach3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach3.snapshotLength > 0){p3=p3+1;}
    
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    	var peach4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/peach_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (peach4.snapshotLength > 0){p4=p4+1;}
    
    //////////////////////////////
    	
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    	var apple1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple1.snapshotLength > 0){a1=a1+1;}
    
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    	var apple2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple2.snapshotLength > 0){a2=a2+1;}
    
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    	var apple3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple3.snapshotLength > 0){a3=a3+1;}
    
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    	var apple4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/apple_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (apple4.snapshotLength > 0){a4=a4+1;}
    
    //////////////////////////////
    
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    	var melon1 = document.evaluate('//form/table/tbody/tr[2]/td[1]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon1.snapshotLength > 0){m1=m1+1;}
    
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    	var melon2 = document.evaluate('//form/table/tbody/tr[2]/td[2]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon2.snapshotLength > 0){m2=m2+1;}
    
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    	var melon3 = document.evaluate('//form/table/tbody/tr[2]/td[3]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon3.snapshotLength > 0){m3=m3+1;}
    
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_0.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_1.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_2.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	var melon4 = document.evaluate('//form/table/tbody/tr[2]/td[4]/img[@src="http://images.neopets.com/games/slots/melon_3.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
    	if (melon4.snapshotLength > 0){m4=m4+1;}
    	
    //////////////////////////////
    
    // Holds goldbags in case there's one bag, one faerie and one mappiece
    
    	if(g1+g2+g3+g4>=1 && t1+t2+t3+t4<2 && f1+f2+f3+f4<2){
    		if(g1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(g2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(g3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(g4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds maps if there are no bags or faeries
    
    	else if(g1+g2+g3+g4<1 && f1+f2+f3+f4<2 &&t1+t2+t3+t4>=1){	
    		if(t1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(t2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(t3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(t4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds faeries if there are no bags or maps	
    
    	else if(g1+g2+g3+g4<1 && f1+f2+f3+f4>=1 && t1+t2+t3+t4<1){	
    		if(f1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(f2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(f3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(f4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds apples if there are at least two
    
    	else if(a1+a2+a3+a4>=2){	
    		if(a1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(a2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(a3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(a4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}	
    
    // Holds bells if there are at least two
    
    	else if(b1+b2+b3+b4>=2 && p1+p2+p3+p4<=2 && g1+g2+g3+g4<2 && t1+t2+t3+t4<2 && f1+f2+f3+f4<2){	
    		if(b1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(b2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(b3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(b4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds peaches if there are at least two
    
    	else if(p1+p2+p3+p4>=2 && b1+b2+b3+b4<=1 && g1+g2+g3+g4<2 && t1+t2+t3+t4<2 && f1+f2+f3+f4<2){	
    		if(p1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    
    // Holds melons if there are three or more
    
    	else if(m1+m2+m3+m4>=3){	
    		if(p1>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold1"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p2>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold2"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p3>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold3"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}
    		if(p4>0){var button = document.evaluate('//input[@type = "checkbox" and @(you need an account to see links) = "hold4"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);button.click();}}
    	
    
    }
    
    //////////////////////////////
    
    if(document.body.innerHTML.indexOf('Click Here to Play') != -1){
      var button = document.evaluate('//form[contains(@action,"slots.phtml")]/input[@type = "hidden" and @(you need an account to see links)ue = "yes"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
      button.click();
      button.form.submit();
    }
    
    if(document.body.innerHTML.indexOf('Play Again') != -1){
      var button = document.evaluate('//form[contains(@action,"process_slots2.phtml")]/input[@type = "hidden" and @(you need an account to see links) = "_ref_ck"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
      button.click();
      button.form.submit();
    }
    
    if(document.body.innerHTML.indexOf('Collect Winnings') != -1){
      var button = document.evaluate('//input[@type = "hidden" and @(you need an account to see links)ue = "true" and @(you need an account to see links)="collect"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null).snapshotItem(0);
      button.click();
      button.form.submit();
    }
    
    }window.setTimeout(delay, x);
    Woah!
    what language is that though? What runs this?
    Trophy collector on Neopets! after a hiatus of 15 years...
    Current count: 60!

  4. #933
    Stocking Anarchy's Avatar
    Joined
    May 2016
    Posts
    1,371
    Userbars
    11
    Thanks
    929
    Thanked
    1,627/650
    DL/UL
    182/0
    Mentioned
    145 times
    Time Online
    47d 8h 56m
    Avg. Time Online
    23m
    Oh sorry, its not a program its a greasemonkey userscript. An addon for firefox. Tampermonkey for Chrome.

    I have a pyramids APer and a Solitaire APer so I forgot this was for programs and not userscripts whoops.







  5. #934

    Joined
    Sep 2014
    Posts
    153
    Userbars
    3
    Thanks
    8
    Thanked
    12/8
    DL/UL
    13/0
    Mentioned
    7 times
    Time Online
    2d 12h 57m
    Avg. Time Online
    1m
    Quote Originally Posted by Daviid View Post
    how did you try it?
    i just set it up in the bot and let it run

  6. #935

    Joined
    Jul 2012
    Posts
    1,888
    Thanks
    1,619
    Thanked
    3,297/1,003
    DL/UL
    223/0
    Mentioned
    469 times
    Time Online
    132d 23h 52m
    Avg. Time Online
    45m
    Quote Originally Posted by createweb View Post
    i just set it up in the bot and let it run
    If it's the same as the one coolguy uploaded it's supposed to be run at specific times, end of the month I think.

  7. #936

    Joined
    Sep 2014
    Posts
    153
    Userbars
    3
    Thanks
    8
    Thanked
    12/8
    DL/UL
    13/0
    Mentioned
    7 times
    Time Online
    2d 12h 57m
    Avg. Time Online
    1m
    Quote Originally Posted by Daviid View Post
    If it's the same as the one coolguy uploaded it's supposed to be run at specific times, end of the month I think.
    So there is none that just picks up and continues the game?

  8. #937
    shos's Avatar
    Joined
    Jun 2013
    Posts
    118
    Userbars
    1
    Thanks
    43
    Thanked
    9/8
    DL/UL
    21/0
    Mentioned
    11 times
    Time Online
    2d 11h 30m
    Avg. Time Online
    N/A
    Here's one: a Brain-Tree Quest completer.

    easy enough, right?
    it is super hard to get over 6000 legit, and extreeeemely hard and lucky to get anything over 10000...yet the high scores show over 18k. So nothing too insane, but get the ~8k needed for gold on first of the month, single-use program
    Trophy collector on Neopets! after a hiatus of 15 years...
    Current count: 60!

  9. #938
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,720
    Userbars
    166
    Thanks
    5,906
    Thanked
    33,077/6,608
    DL/UL
    23/36
    Mentioned
    3,867 times
    Time Online
    563d 4h 55m
    Avg. Time Online
    3h 13m
    Quote Originally Posted by shos View Post
    Here's one: a Brain-Tree Quest completer.

    easy enough, right?
    it is super hard to get over 6000 legit, and extreeeemely hard and lucky to get anything over 10000...yet the high scores show over 18k. So nothing too insane, but get the ~8k needed for gold on first of the month, single-use program
    Already made in Stealth Core...

    Also, please use the "search" feature in our Downloads section. I typed "brain tree" and Stealth Core was the only result. Cheers!
    (you need an account to see links)
    (you need an account to see links)(you need an account to see links)

    ------------------------
    [02/24/2013] Stealth CORE is made into the first standalone Neopets auto-player.
    ------------------------


  10. The Following 2 Users Say Thank You to j03 For This Useful Post:

    Daviid (09-12-2017),shos (09-13-2017)

  11. #939
    Stocking Anarchy's Avatar
    Joined
    May 2016
    Posts
    1,371
    Userbars
    11
    Thanks
    929
    Thanked
    1,627/650
    DL/UL
    182/0
    Mentioned
    145 times
    Time Online
    47d 8h 56m
    Avg. Time Online
    23m
    Could someone pretty please make a program or script that will automatically feed your neopets items that you have in your inventory every set amount of time? @(you need an account to see links) made one but after three feeds it is no longer logged into you account. Most efficient way to feed your neopet is have it at dying and to feed it every 66 minutes. Will be very awesome to have especially now if people want to just feed stat foods to beef up their pets.

    ---------- Post added at 04:57 AM ---------- Previous post was at 04:55 AM ----------

    Quote Originally Posted by shos View Post
    Here's one: a Brain-Tree Quest completer.

    easy enough, right?
    it is super hard to get over 6000 legit, and extreeeemely hard and lucky to get anything over 10000...yet the high scores show over 18k. So nothing too insane, but get the ~8k needed for gold on first of the month, single-use program
    You can't send a score for the brain tree if that is what you mean. Its random the score you get when you turn in the quest.







  12. #940
    SmileYaDead's Avatar
    Joined
    Feb 2012
    Posts
    3,611
    Userbars
    7
    Thanks
    835
    Thanked
    842/474
    DL/UL
    129/0
    Mentioned
    355 times
    Time Online
    89d 14h 56m
    Avg. Time Online
    30m
    @(you need an account to see links)

    about the scorchy slots ap, does it run in another window while I do something else on my pc?

    Never mind, I got my answer
    Last edited by SmileYaDead; 09-29-2017 at 07:39 AM.

Page 94 of 159 FirstFirst ... 44849293949596104144 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •