Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Auto clicker detection
- MinciHusky
-
3 posts
Auto clicker detection
Does anyone know any kind of script that detects if you're using an auto clicker? I'm making a clicker game, and I don't really want anyone to use an auto clicker because I'm trying to make it as rewarding as possible.
- Mr_Woomy
-
500+ posts
Auto clicker detection
id make a script like Does anyone know any kind of script that detects if you're using an auto clicker? I'm making a clicker game, and I don't really want anyone to use an auto clicker because I'm trying to make it as rewarding as possible.
when (FLAG) pressed:
forever
if (mouse down?) & timer < 0.1
set timer to 0.2
else
(your anti-clicker code here)
then on another forever loop
change timer by -0.1
tbh it would make the game just drone on for a while if this is added but oh well
- MinciHusky
-
3 posts
Auto clicker detection
ah thanks, ill see if that works. i know it would be a bit controversial for a clicker game, but again im trying to make it rewarding
- MinciHusky
-
3 posts
Auto clicker detection
How would I exactly do the “timer is equal to almost the same thing as last time” block?
- Woodfur
-
100+ posts
Auto clicker detection
I wouldn't just compare it to the last click since a human could easily do that by accident. If enough clicks in a row are consistent, that's probably a bot. Of course bots can switch up their clicking rate pretty much as often as the creator wants, but we won't worry about that.
Last edited by Woodfur (July 18, 2023 04:56:54)
- mr-hi-hello
-
1 post
Auto clicker detection
how do you get the red blocks I would make a script like this
- Malicondi
-
1000+ posts
Auto clicker detection
You can't, red blocks using [scratchblocks are just blocks that don't actually exist in scratchhow do you get the red blocks I would make a script like this
Last edited by Malicondi (Jan. 29, 2024 21:20:06)
- Discussion Forums
- » Help with Scripts
-
» Auto clicker detection