Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const INTERVAL = 5 * 60 * 1000
- function availableForPopping() {
- return Game.wrinklers
- .filter(w => w.type == 0 && w.sucked > 0)
- }
- setInterval(() => {
- availableForPopping().forEach(w => w.hp = 0)
- }, INTERVAL)
Add Comment
Please, Sign In to add comment