Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/ba6dc26d2bfb0bd4f7d25ae2ffccad97.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Pokeclicker : Press tab to apply vitamins
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Add vitamins to pokemon, for the game pokeclicker
// @author Natoalaska
// @match https://www.pokeclicker.com/*
// @grant none
// @license MIT
// @downloadURL none
// ==/UserScript==
document.addEventListener('keyup',function(evt){
if(evt.keyCode==9){ // just click tab and you'll add vitamins to the pokemon of the chosen id (you can also change the keycode so that it's another button to press)
//App.game.party.getPokemon(1).useVitamin(0,19);
// Change the pokemon #
// Change the Vitamin to use (0 = Protein, 1 = Calcium, 0 = Carbos)
// Change the Number of Vitamins to use
// Give Bulbasaur 19 Proteins
App.game.party.getPokemon(1).useVitamin(0,19);
// Give Bulbasaur 21 Carbos
App.game.party.getPokemon(1).useVitamin(2,21);
//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
}});