您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add Pokemon by Id for the game pokeclicker
// ==UserScript== // @name Pokeclicker : Press tab for pokemon // @namespace http://tampermonkey.net/ // @version 1.2.2 // @description Add Pokemon by Id for the game pokeclicker // @author Loliprane // @match https://www.pokeclicker.com/* // @grant none // @license MIT // ==/UserScript== document.addEventListener('keyup',function(evt){ if(evt.keyCode==9){ // just click on tab and you'll get the pokemon of the chosen id (you can also change the keycode so that it's another button to press) App.game.party.gainPokemonById(869.67,false); //false will get you a non shiny, true will get you one. You can add as many of those line as you want. App.game.party.gainPokemonById(869.67,false); //etc, you just have to change the ID to get different pokemon App.game.party.removePokemonByName("MissingNo."); // remove the MissingNo if by mistake you add it to your party : getting the name of a pokemon is quite tedious but it's possible so if you want to know just post a feedback }});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址