Automatically kill's non-shinies and retry until a shiny is found
< 脚本 IdlePixel Auto Shiny Breeder 的反馈
Hey, you can add support for "Make Fighter & Try Again" by adding const fighterBtn = [...dialog.querySelectorAll("button")] .find(btn => btn.textContent.includes("Make Fighter & Try Again")); if (fighterBtn) { fighterBtn.click(); return; }after the isShiny IF block. This way the script does not waste fighters by killing them.
登录以发布留言。
Hey, you can add support for "Make Fighter & Try Again" by adding
const fighterBtn = [...dialog.querySelectorAll("button")]
.find(btn => btn.textContent.includes("Make Fighter & Try Again"));
if (fighterBtn) {
fighterBtn.click();
return;
}
after the isShiny IF block. This way the script does not waste fighters by killing them.