Strudels

Unlock All AC Team Blurbs

Jul 8th, 2024 (edited)
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Unlock All AC Team Blurbs
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @author       Rippy
  6. // @match        *://*.neopets.com/altador/colosseum/
  7. // @icon         https://www.google.com/s2/favicons?sz=64&domain=neopets.com
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12.     'use strict';
  13.  
  14.     $('div[class^="ac-logo ac-"]').each((i, e) => {
  15.         const team = $(e).attr("class").replace("ac-logo ac-", "").replace(" disabled", "");
  16.         $(e).attr({
  17.             "class": "ac-logo ac-" + team,
  18.             "onclick": "getTeamData(this)",
  19.             "data-team": team,
  20.             "data-id": ["altador", "brightvale", "darigancitadel", "faerieland", "hauntedwoods", "kreludor", "krawkisland", "shenkuu", "lostdesert", "maraqua", "meridell", "mysteryisland", "rooisland", "terrormountain", "tyrannia", "virtupets", "kikolake", "moltara", "dacardia"].indexOf(team) + 1 + "",
  21.             "data-state": "promo"
  22.         });
  23.     });
  24. })();
Advertisement
Add Comment
Please, Sign In to add comment