Results 1 to 7 of 7

Thread: neopets beta script request?

  1. #1
    Wormjaw's Avatar
    Joined
    May 2014
    Posts
    229
    Userbars
    17
    Thanks
    373
    Thanked
    465/123
    DL/UL
    44/0
    Mentioned
    42 times
    Time Online
    19d N/A
    Avg. Time Online
    7m

    neopets beta script request?

    Wondering if anyone can make a script that makes it so that when you click your NP on the beta page it leads you to your inventory instead of the bank like the classic website used to. ;_; I don't know if anyone else is annoyed about this like I am but my coding knowledge is nothing but I'm hoping this would be a simple redirect? <3

    thank yew lyrichord for my userbar/avatar! <3

    nya



  2. #2
    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
    550d 23h 43m
    Avg. Time Online
    3h 26m
    omg it annoys the snot out of me and it's one of those things I've been meaning to do for myself but just never got around to

    I'm about to head outside for a while to soak in as much daylight as I can, but I'll try to take a look in a few hours.



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

    thanks honeycomb
    and hearts! <3
    +Zenitsu

    THANK YOU FAB



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

    Wormjaw (02-13-2022)

  4. #3
    Wormjaw's Avatar
    Joined
    May 2014
    Posts
    229
    Userbars
    17
    Thanks
    373
    Thanked
    465/123
    DL/UL
    44/0
    Mentioned
    42 times
    Time Online
    19d N/A
    Avg. Time Online
    7m
    omg im not the only one!! tysm! <3 <3 <3 and no rush haha get your vitamin d!! i'm about to go out and do errands too

    thank yew lyrichord for my userbar/avatar! <3

    nya



  5. #4
    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
    550d 23h 43m
    Avg. Time Online
    3h 26m
    Hey sorry I never got back to you last night, ended up loafing around a little bit, but I will try to get to it in the next few days.



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

    thanks honeycomb
    and hearts! <3
    +Zenitsu

    THANK YOU FAB



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

    Wormjaw (02-14-2022)

  7. #5
    Wormjaw's Avatar
    Joined
    May 2014
    Posts
    229
    Userbars
    17
    Thanks
    373
    Thanked
    465/123
    DL/UL
    44/0
    Mentioned
    42 times
    Time Online
    19d N/A
    Avg. Time Online
    7m
    absolutely noooooooo rush! <3

    thank yew lyrichord for my userbar/avatar! <3

    nya



  8. #6
    Oblivious's Avatar
    Joined
    Sep 2013
    Posts
    13
    Userbars
    3
    Thanks
    15
    Thanked
    16/6
    DL/UL
    36/0
    Mentioned
    6 times
    Time Online
    9d 12h 28m
    Avg. Time Online
    3m
    Spent a little time figuring out a solution for what you wanted! Hope its what you were looking for.

  9. #7
    nataurs's Avatar
    Joined
    Dec 2014
    Posts
    161
    Userbars
    9
    Thanks
    269
    Thanked
    517/111
    DL/UL
    24/0
    Mentioned
    10 times
    Time Online
    116d 12h 1m
    Avg. Time Online
    49m
    Code:
    // ==UserScript==
    // @name         NP to Inventory
    // @match        *://www.neopets.com/*
    // ==/UserScript==
    
    const isBeta = $('.nav-top__2020').length > 0;
    
    let url = 'http://www.neopets.com/inventory.phtml';
    
    if ($(location).attr('href').includes('https')) {
        url = 'https://www.neopets.com/inventory.phtml';
    }
    
    if (isBeta) {
        $('div.navsub-right__2020 > a:first-child').attr('href', url);
    }
    Last edited by nataurs; 04-05-2022 at 04:45 AM.

Posting Permissions

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