Results 1 to 8 of 8

Thread: Looking for a working Symol Hole player script.

  1. #1

    Joined
    Sep 2016
    Posts
    21
    Userbars
    0
    Thanks
    1
    Thanked
    0/0
    DL/UL
    5/0
    Mentioned
    6 times
    Time Online
    1d 10h 38m
    Avg. Time Online
    N/A

    Looking for a working Symol Hole player script.

    Are there any out there?
    I've tried Wesley's and that one doesn't work.

  2. #2
    Accelerator's Avatar
    Joined
    Jul 2013
    Posts
    4,995
    Userbars
    26
    Thanks
    1,986
    Thanked
    3,789/1,696
    DL/UL
    178/0
    Mentioned
    744 times
    Time Online
    335d 1h 18m
    Avg. Time Online
    2h 3m
    @(you need an account to see links)
    Code:
    // ==UserScript==
    // @(you need an account to see links)           Neopets : Mysterious Symol Hole
    // @(you need an account to see links)space      (you need an account to see links)
    // @(you need an account to see links)cription    Plays Mysterious Symol Hole
    // @author         w35l3y
    // @(you need an account to see links)          (you need an account to see links)
    // @copyright      2012+, w35l3y ((you need an account to see links))
    // @license        GNU GPL
    // @(you need an account to see links)epage       (you need an account to see links)
    // @version        2.0.0
    // @(you need an account to see links)uage       en
    // @(you need an account to see links)           (you need an account to see links)
    // @include        (you need an account to see links)
    // @require        ../../includes/Includes_XPath/63808.user.js
    // @grant          GM_getValue
    // ==/UserScript==
    
    /**************************************************************************
    
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU General Public License as published by
        the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.
    
        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU General Public License for more details.
    
        You should have received a copy of the GNU General Public License
        along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    **************************************************************************/
    
    (function () {	// script scope
    	var user = {
    		interval	: JSON.parse(GM_getValue("interval",	"[1000, 2000]"))
    	},
    	field = xpath(".//form[contains(@action, 'process_symolhole.phtml')]/select @(you need an account to see links) = 'goin']")[0];
    	field.selectedIndex = Math.floor(100 * Math.random() * field.length % (field.length - 1));
    
    	setTimeout(function () {
    		field.form.submit();
    	}, Math.floor(user.interval[0] + Math.random() * user.interval[1]));
    }());

    (you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)

    "Date et dabitur vobis"
    「Let's fight 恐れはない」


    "A quantum supercomputer calculating for a thousand years could not even approach the number of f��ks I do not give"

    「君が望むモノは何?」

  3. #3

    Joined
    Sep 2016
    Posts
    21
    Userbars
    0
    Thanks
    1
    Thanked
    0/0
    DL/UL
    5/0
    Mentioned
    6 times
    Time Online
    1d 10h 38m
    Avg. Time Online
    N/A
    Hm, it still doesn't work for me

  4. #4
    Saiyan Race
    j03's Avatar
    Joined
    Dec 2011
    Posts
    13,722
    Userbars
    166
    Thanks
    5,906
    Thanked
    33,078/6,609
    DL/UL
    23/36
    Mentioned
    3,867 times
    Time Online
    563d 5h 25m
    Avg. Time Online
    3h 13m
    Quote Originally Posted by nova124 View Post
    Hm, it still doesn't work for me
    The one in Stealth Core works, it's a bot, not a script but you can use your firefox cookies to do it for your account.
    (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.
    ------------------------


  5. #5
    Accelerator's Avatar
    Joined
    Jul 2013
    Posts
    4,995
    Userbars
    26
    Thanks
    1,986
    Thanked
    3,789/1,696
    DL/UL
    178/0
    Mentioned
    744 times
    Time Online
    335d 1h 18m
    Avg. Time Online
    2h 3m
    Quote Originally Posted by nova124 View Post
    Hm, it still doesn't work for me
    Works with Firefox+GM...
    Code:
    // ==UserScript==
    //    @(you need an account to see links)           Neopets : Mysterious Symol Hole
    //    @(you need an account to see links)space      (you need an account to see links)
    //    @(you need an account to see links)cription    Plays Mysterious Symol Hole
    // @license        GNU GPL
    // @version        1.0.0
    //    @(you need an account to see links)uage       en
    // @include        (you need an account to see links)
    // ==/UserScript==
    
    
    
    var butt = document.getElementsByTagName('input');
    
    var elements = document.getElementsByName('goin');
    for(var i = 0; i < elements.length; ++i){
        var max = elements[i].length;
        max = parseInt(max)
        max = max-1;
        var tempN = Math.floor((Math.random()*max)+1);
    	elements[i].selectedIndex = tempN;
    }
    
    for(var j = 0; j < butt.length; ++j) {
     	if (butt[j].value == "ENTER!")
        {
            setTimeout(777);
            butt[j].click();   
        }
    }
    
    console.log(butt);
    That should work with both Chrome+TM and Firefox+GM.
    Last edited by Accelerator; 11-05-2016 at 10:57 AM.

    (you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)

    "Date et dabitur vobis"
    「Let's fight 恐れはない」


    "A quantum supercomputer calculating for a thousand years could not even approach the number of f��ks I do not give"

    「君が望むモノは何?」

  6. #6

    Joined
    Sep 2016
    Posts
    21
    Userbars
    0
    Thanks
    1
    Thanked
    0/0
    DL/UL
    5/0
    Mentioned
    6 times
    Time Online
    1d 10h 38m
    Avg. Time Online
    N/A
    Alright that one works!
    Is there a way to get it to route back to the main symol hole page and start over? Basically I'd like to be able to just get it up and running and just leave it.
    As it is now, I have to manually go back to the main page so it can start again

  7. #7
    Accelerator's Avatar
    Joined
    Jul 2013
    Posts
    4,995
    Userbars
    26
    Thanks
    1,986
    Thanked
    3,789/1,696
    DL/UL
    178/0
    Mentioned
    744 times
    Time Online
    335d 1h 18m
    Avg. Time Online
    2h 3m
    Quote Originally Posted by nova124 View Post
    Alright that one works!
    Is there a way to get it to route back to the main symol hole page and start over? Basically I'd like to be able to just get it up and running and just leave it.
    As it is now, I have to manually go back to the main page so it can start again
    Why would you want to do that? Pretty sure it's a "once a day" daily...

    (you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)
    (you need an account to see links)

    "Date et dabitur vobis"
    「Let's fight 恐れはない」


    "A quantum supercomputer calculating for a thousand years could not even approach the number of f��ks I do not give"

    「君が望むモノは何?」

  8. #8

    Joined
    Sep 2016
    Posts
    21
    Userbars
    0
    Thanks
    1
    Thanked
    0/0
    DL/UL
    5/0
    Mentioned
    6 times
    Time Online
    1d 10h 38m
    Avg. Time Online
    N/A
    Quote Originally Posted by Accelerator View Post
    Why would you want to do that? Pretty sure it's a "once a day" daily...
    From what I understand, it's not a "daily" in the sense that you only have 1 shot at a prize per day.
    You can keep doing it over and over and over again in a day until you get a prize. You just have to manually go back to it and play it, instead of just refreshing.

Posting Permissions

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