// ==UserScript== // @name PokeClicker Hacks // @author fiammanda // @version 1.20220222 // @grant none // @match https://www.pokeclicker.com/ // @license MIT // @description tab hack menu shiny rate and more... // @namespace https://greasyfork.org/users/1055144 // @downloadURL https://update.greasyfork.icu/scripts/463463/PokeClicker%20Hacks.user.js // @updateURL https://update.greasyfork.icu/scripts/463463/PokeClicker%20Hacks.meta.js // ==/UserScript== let click = 0, hatch = 0; const hacks = [ [0, "catch rate", 10], ["shiny", "shiny chance", 100], ["roaming", "roaming chance", 10], ["exp", "experience", 10], ["eggStep", "egg step", 10], ["money", "money", 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999], ["dungeonToken", "dungeon token", 500000], ["clickAttack", "player attack", 9000000000], ["pokemonAttack", "pokemon attack", 100], [4, "berry growth", 100], [8, "berry mutation", 100], [9, "berry replant", 100], [7, "mine enery", 900000], [10, "mine damage", 900000], [11, "mine award", 900000] ] const style = document.createElement("style"); style.innerHTML = ` #game { max-width: 1500px; } #game .col-lg-3 { flex: 0 0 20%; max-width: 20%; } #game .col-lg-6 { flex: 0 0 40%; max-width: 40%; } #hack { font-size: .825rem; overflow: auto; } #hack img, #hack svg { width: 1rem; color: #222; } #hack table { table-layout:fixed; } #hack td { padding: .25rem 0; } #hack td.disabled { background: rgba(0,0,0,.03); pointer-events: none; } #hack td.disabled img, #hack td.disabled svg { opacity: .25; } #hack td:first-child { padding: .25rem; text-align: left; } #hack td[data-rate]::before { content: attr(data-rate) attr(data-multiplier); font-size: .75rem; white-space: nowrap; } #hack td[data-rate="0"]::before { content: "-"; } #hack td[onclick] { width: 2rem; background: rgba(0,0,0,.05); transition: background .2s ease-in-out; cursor: pointer; } #hack td[onclick]:hover { background: rgba(0,0,0,.08); } `; document.body.append(style); const hack = document.createElement("div"); hack.className = "col-lg-2 order-lg-first"; let html = `
Hacks
`; hacks.forEach((h, i) => { html += ``; }); html += `
catch time
${h[1]}
auto click
auto hatch
`; html += `
${document.getElementById("shortcutsContainer").innerHTML}
`; hack.innerHTML = html; document.getElementById("shortcutsContainer").remove(); document.querySelector(".justify-content-lg-center").prepend(hack);