Results 1 to 6 of 6

Thread: Help finding some scripts to install?

  1. #1

    Joined
    Sep 2017
    Posts
    11
    Userbars
    0
    Thanks
    18
    Thanked
    19/3
    DL/UL
    1/0
    Mentioned
    5 times
    Time Online
    17h 4m
    Avg. Time Online
    N/A

    Help finding some scripts to install?

    Hello all! I see some great scripts on this forum, but I'm having trouble accessing some of them due to userscripts.org not working. They are mostly Wesley/w35l3y scripts, and I found many of them thanks to a helpful post by user Allem pointing us to Wesley's github, but there are others that are not on there, unfortunately.

    I'm looking for

    -Potato Counter Autoplayer by w35l3y
    -Use Shop Wizard on a Faerie Quest by w35l3y
    -Moltara autodoer by w35l3y

    and

    -Neopets Crawler by NeoMarc

    I'm also having trouble with by w35l3y's Snowager (silent version) script.. It doesn't seem to do anything? Does anyone know how to fix it or where to find one that does work?

    Finally, anyone know a script for Tarla's non-toolbar treasures? I'm thinking of something like the magma pool checker script by AyBeCee, but within the certain time constraints.

    If anyone could link these things to me or tell me where to look, I would appreciate it so much! Thank you!!

  2. #2

    Joined
    Sep 2017
    Posts
    1
    Userbars
    0
    Thanks
    0
    Thanked
    1/1
    DL/UL
    1/0
    Mentioned
    Never
    Time Online
    2h 29m
    Avg. Time Online
    N/A
    Try this for the neo crawler (Not mine)

    Code:
    // ==UserScript==
    // @(you need an account to see links)	NeoSpiderer 1.1
    // @(you need an account to see links)space 	EvilChaos.com
    // @(you need an account to see links)cription	Randomly visits pages on neopets.com, and alerts when there's a random event.
    // @include 	(you need an account to see links)
    // @exclude	    (you need an account to see links)
    // @exclude	    (you need an account to see links)
    // ==/UserScript==
    
    //Settings in seconds. Change them to spider at a lower/higher speed.
    var minTime = 1;
    var maxTime = 4;
    var PERIOD = (maxTime * 1000 - minTime * 1000) * Math.random() + minTime * 1000;
    
    // Functions
    var excludes = [
    	/\.wav$/,
    	/logout\.phtml$/,
    	/process_neofriend_requests.phtml/,
    	/^javascript:/,
    ];
    
    function filterLinks(links_array)
    {
    	var return_array = [];
    	for (var i = 0; i < links_array.length; i++)
    	{
    		val = true;
    		for (var x = 0; x < excludes.length; x++)
    		{
    			if (!links_array[i].href.match(/^http:\/\/\w+\.neopets\.com/))
    			{
    				val = false;
    				break;
    			}
    			if (links_array[i].href.match(excludes[x]))
    			{
    				val = false;
    				break;
    			}
    		}
    		if (val) return_array.push(links_array[i]);
    	}
    	return return_array;
    }
    
    function getLink()
    {
    	var links = filterLinks(document.links);
    	var rnd = Math.floor(Math.random() * (links.length - 1));
    	return links[rnd].toString();
    }
    
    // Spider Part
    
    if (document.body.innerHTML.indexOf("NEW BATTLEDOME CHALLENGER")>-1) {alert("You have a new challenger!");}		//battledome
    else if (document.body.innerHTML.indexOf("as an avatar on the NeoBoards")>-1) {alert("You have a new avatar!");}	//avatar
    else if (document.body.innerHTML.indexOf("You have a new quest")>-1) {alert("You have a new quest!");}			//quest
    else if (document.body.innerHTML.indexOf("Random Event!!!")>-1) {alert("Something has happened!");}				//tyrannian/winter RE
    else if (document.body.innerHTML.indexOf("Something has happened!")>-1) {alert("Something has happened!");}		//other
    else {
    	setTimeout('window.location.href = "' + getLink() + '";', PERIOD);
    }

  3. The Following User Says Thank You to magister For This Useful Post:

    ylfogdrib (09-21-2017)

  4. #3

    Joined
    Sep 2017
    Posts
    11
    Userbars
    0
    Thanks
    18
    Thanked
    19/3
    DL/UL
    1/0
    Mentioned
    5 times
    Time Online
    17h 4m
    Avg. Time Online
    N/A
    Thanks! I'll try that out!

    Edit: Tried it! It got stuck a lot and I was kind of afraid it would put my pets up for adoption or something lol. Thanks anyway!
    Last edited by ylfogdrib; 09-26-2017 at 10:44 AM.

  5. #4

    Joined
    Dec 2011
    Posts
    151
    Userbars
    2
    Thanks
    4
    Thanked
    165/45
    DL/UL
    14/9
    Mentioned
    68 times
    Time Online
    6d 17h 26m
    Avg. Time Online
    2m
    You can try (you need an account to see links), the site is searchable and I was able to find most of the ones you listed.

    (you need an account to see links), goes to w35l3y scripts
    Last edited by Soredavide; 09-21-2017 at 01:33 PM.

  6. The Following User Says Thank You to Soredavide For This Useful Post:

    ylfogdrib (09-26-2017)

  7. #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 2m
    w35l3y's scripts can be found (you need an account to see links)
    Check (scripts or backup)
    e.g:
    (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)
    (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. The Following 2 Users Say Thank You to Accelerator For This Useful Post:

    motherfucker (09-21-2017),ylfogdrib (09-26-2017)

  9. #6

    Joined
    Sep 2017
    Posts
    11
    Userbars
    0
    Thanks
    18
    Thanked
    19/3
    DL/UL
    1/0
    Mentioned
    5 times
    Time Online
    17h 4m
    Avg. Time Online
    N/A
    Thank you for the links! Especially to the userscripts-mirror, that's exactly what I needed!

    I also found out that the Snowager script DOES appear to do something.. I saw a little box pop up in my window yesterday at 2 pm MY TIME (EST), saying that the snowager fired an icy blast at my pet (because it was 11 am NST and the snowager was awake), and my pet's health did in fact go from full to zero! Craziness. So apparently the script is working, but is checking my local time, not neopets time. But the script is too complicated for me to fix myself at this time. Would someone with more experience be able to take a look at it?

    Also, I never found a Tarla's script, so I went ahead and learned a little bit of JavaScript and made one based on AyBeCee's magma pool checker!
    (you need an account to see links)

  10. The Following User Says Thank You to ylfogdrib For This Useful Post:

    Infiniti (09-26-2017)

Posting Permissions

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