n0uur / popcat-auto.js

Popcat.click bot using Javascript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

popcat-auto.js

Popcat.click Auto bot using Javascript 🐱

Not working on Mobile phone or any Tablet

Working only on PC (Windows/Linux) or Mac devices

How to use

  • Copy code from Here
  • Open popcat.click
  • Open Inspector tool
  • Open Console Tab. It always in Inspector tab, just find it.
  • Paste Code that's you just copied it into console and press Enter to run it
  • If it's run properly you will see [BOT] Started BOT in console.

How it work ?

This code will loop every 1 second to replace number that will send to server to Max value that server will accept. in this case is 799

Why 799 ? Not 800

// This code is from popcat.click
if (this.accumulator >= 800) {
    this.sequential_max_pops += 1
    if (this.sequential_max_pops > 10) { // 20*30 seconds = 5 minutes
        this.bot = true
        setCookie('bot', true, 0.5) // Cookie lasts for 12 hours
    }
} else {
    this.sequential_max_pops = 0
    this.bot = false
}

As you can see, It's >= 800 not > 800, So 800 will be detected as a BOT

Your code just have bot spoofing. Why not 800 ?

FIRST STOP BEING GREEDY. SECOND DO NOT TRUST MYCODE AND MORE IMPORTANT DO NOT TRUST JAVASCRIPT!

POPCAT

About

Popcat.click bot using Javascript.


Languages

Language:JavaScript 100.0%