Page 127 of 159 FirstFirst ... 2777117125126127128129137 ... LastLast
Results 1,261 to 1,270 of 1587

Thread: Request a Bot/Feature

  1. #1261
    datalore's Avatar
    Joined
    Sep 2020
    Posts
    113
    Pronouns
    they/them or she/her
    Userbars
    9
    Thanks
    223
    Thanked
    202/68
    DL/UL
    11/0
    Mentioned
    18 times
    Time Online
    4d 2h 17m
    Avg. Time Online
    4m
    Quote Originally Posted by BravoEd View Post
    Hey guys, do we have a Ghoul Catchers auto sender?
    I would LOVE a GC autoplayer/auto sender as well. Unfortunately I wasn't able to make any of the old ones work :/

  2. #1262
    Abrupt's Avatar
    Joined
    Apr 2016
    Posts
    13
    Userbars
    0
    Thanks
    25
    Thanked
    7/5
    DL/UL
    12/0
    Mentioned
    1 time
    Time Online
    1d 38m
    Avg. Time Online
    N/A
    Gallery drag & drop organizer! I used to use one from another forum but with the beta it no longer works.

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

    Cherubi (01-14-2022)

  4. #1263
    datalore's Avatar
    Joined
    Sep 2020
    Posts
    113
    Pronouns
    they/them or she/her
    Userbars
    9
    Thanks
    223
    Thanked
    202/68
    DL/UL
    11/0
    Mentioned
    18 times
    Time Online
    4d 2h 17m
    Avg. Time Online
    4m
    Quote Originally Posted by Peanutface View Post
    Safety Deposit Box Auto-Pricer has not been working for me. It only prices the first page. Can anyone give me advice? Does it need to be reinstalled or updated?
    This might be a question for Bat
    I'm having this same problem! It looks like the (you need an account to see links) for that script is closed which is why I came to check here. @(you need an account to see links) -- Do you have any idea what might be causing this?

    For me it sometimes prices the first 30 items, and at times doesn't price any even after having gone through every page:


    Thank you!
    data & spot userbar by @Lyrichord ~ thank you

  5. #1264
    Dewgong's Avatar
    Joined
    Jun 2019
    Posts
    69
    Pronouns
    He/him
    Userbars
    11
    Thanks
    134
    Thanked
    400/57
    DL/UL
    13/0
    Mentioned
    17 times
    Time Online
    16d 38m
    Avg. Time Online
    13m
    Hello! I have requests for a number of scripts if possible, nothing huge mostly, just a few QOL changes, mainly to do with restocking. I don't know much about writing scripts at all so I'm just assuming these are possible, but let me know if any of these are asinine LMAO


    - Keep the SSW button always visible on beta, rather than hiding it when you scroll down and unhiding when you scroll up
    - Autofill your PIN on pages that have a PIN field
    - Disable autofill suggestions on chrome when you click the price box on the shop haggle page
    - A "collect all" button for your shop till
    - A button for the haggle page that enters the exact price asked for by the shopkeeper, optionally one that is compatible with the (you need an account to see links).
    - And maybe a bit more out there, but a script that displays JN prices beneath each item stocked in a neopian (not user) shop, maybe with color differentiation for items that are priced higher or lower than the JN price? I'm assuming this would be much more ambitious/not do-able since it'd have to pull prices for each and every item on the page, but asking just in case LOL



    If anyone is able to make any script possible thanks so much in advance!
    Last edited by Dewgong; 12-15-2021 at 11:29 PM.


    Had to step away for a year or so due to life being in the way, apologies for the PMs I missed during that time.
    If you are still interested in a trade or sale from that time, please don't hesitate to reach out to me again.

  6. #1265
    overthink.exe
    kittyray's Avatar
    Joined
    Sep 2013
    Posts
    5,623
    Pronouns
    she/they
    Userbars
    117
    Thanks
    13,412
    Thanked
    18,704/5,242
    DL/UL
    40/0
    Mentioned
    1,155 times
    Time Online
    551d 1m
    Avg. Time Online
    3h 26m
    @(you need an account to see links) I have the shop till one already for personal use, never bothered posting it here because it's not a lot, but here you go.

    Code:
    // ==UserScript==
    // @name         lazy shop till
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @description  auto-fills shop till amount
    // @author       kittyray
    // @match        http://www.neopets.com/market.phtml?type=till
    // @match        https://www.neopets.com/market.phtml?type=till
    
    // ==/UserScript==
    
    let total_till = parseInt($('p:contains(You currently have) b')[0].innerText.replace(/\D/g,''));
    $('input:text[name="amount"]')[0].value=(total_till)

    I can take a look at the others when I've got some time.I think the chrome auto-fill might just be a chrome setting somewhere? idk


    [edit] This should do the trick for PINs

    Code:
    // ==UserScript==
    // @name         lazy pins
    // @namespace    http://tampermonkey.net/
    // @version      0.1
    // @description  auto fills your PIN
    // @author       kittyray
    // @match        http://www.neopets.com/*
    // @match        https://www.neopets.com/*
    // ==/UserScript==
    
    (function() {
        'use strict';
    
    $('input#pin_field')[0].value=1234
    })();
    (replace 1234 with your actual PIN)




    Let me know if you have an issues.
    Last edited by kittyray; 12-15-2021 at 11:11 PM.



    thanks stardust for base Thanks Sugarbee Thanks Wooloo
    Kyo (Nov 13 2020)

    thanks honeycomb
    and hearts! <3
    +Zenitsu

    THANK YOU FAB



  7. The Following User Says Thank You to kittyray For This Useful Post:

    Dewgong (12-15-2021)

  8. #1266
    Dewgong's Avatar
    Joined
    Jun 2019
    Posts
    69
    Pronouns
    He/him
    Userbars
    11
    Thanks
    134
    Thanked
    400/57
    DL/UL
    13/0
    Mentioned
    17 times
    Time Online
    16d 38m
    Avg. Time Online
    13m
    @(you need an account to see links) both are working perfectly, thank you so much!


    Had to step away for a year or so due to life being in the way, apologies for the PMs I missed during that time.
    If you are still interested in a trade or sale from that time, please don't hesitate to reach out to me again.

  9. The Following 2 Users Say Thank You to Dewgong For This Useful Post:

    kittyray (12-15-2021),Zenitsu (01-14-2022)

  10. #1267
    aymo's Avatar
    Joined
    Nov 2018
    Posts
    542
    Userbars
    47
    Thanks
    1,685
    Thanked
    2,136/510
    DL/UL
    3/0
    Mentioned
    62 times
    Time Online
    11d 8h 5m
    Avg. Time Online
    8m
    Request: Working script that fills in the battledome weapons/ability for you, and you just click battle or something.

    I have the old clraik auto battler from the forums around 2019 but it does not seem to work for me anymore. I've also tried several others and they don't seem to work. I have bad wrist pain and want a way to do some more battling without a flare up.

  11. #1268
    Artenio's Avatar
    Joined
    Oct 2021
    Posts
    51
    Userbars
    5
    Thanks
    39
    Thanked
    45/21
    DL/UL
    16/0
    Mentioned
    5 times
    Time Online
    1d 1h 12m
    Avg. Time Online
    1m
    Are there any scripts or bots that transfer everything from your SDB into your shop? I have thousands of items to get rid of, and I'm not looking forward to doing it all manually.

  12. #1269
    Zenitsu's Avatar
    Joined
    Jan 2020
    Posts
    1,075
    Pronouns
    he/him 🧍
    Userbars
    74
    Thanks
    21,280
    Thanked
    5,825/1,387
    DL/UL
    42/0
    Mentioned
    430 times
    Time Online
    245d 4h 21m
    Avg. Time Online
    3h 51m
    Does anybody know a script or bot that can auto-feed or read books?
    Slowpoke! 💧🌊💙ㅤㅤㅤㅤㅤㅤBrittany Buizel GangㅤㅤㅤㅤㅤㅤK-Pop Idol Icy 🧊 ㅤㅤㅤㅤㅤㅤㅤAri 🌸ㅤㅤ Bat Fanclub *squeak* 🦇
    💻💊😎 Join the Nyanomatrix. ㅤㅤDuke & Ditah 🐕 Clefairy ⚡ 😭 Wooloo 🐑 Howdy 🤠🐦



  13. #1270
    aymo's Avatar
    Joined
    Nov 2018
    Posts
    542
    Userbars
    47
    Thanks
    1,685
    Thanked
    2,136/510
    DL/UL
    3/0
    Mentioned
    62 times
    Time Online
    11d 8h 5m
    Avg. Time Online
    8m
    Quote Originally Posted by Zenitsu View Post
    Does anybody know a script or bot that can auto-feed or read books?
    Attempting to share something that might help and getting "Thank you for posting! Your post will not be visible until a moderator has approved it for posting."

    Is there a rule against sharing greasy fork ? Can't figure out how to stop getting auto moderated.

  14. The Following User Says Thank You to aymo For This Useful Post:

    Orbit (01-14-2022)

Page 127 of 159 FirstFirst ... 2777117125126127128129137 ... 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
  •