Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Anyone know how to make a block that activates turbo mode?
- FINN_80_BIO
-
Scratcher
67 posts
Anyone know how to make a block that activates turbo mode?
making a game that requires turbo mode to work
- Mousyprawn44
-
New Scratcher
14 posts
Anyone know how to make a block that activates turbo mode?
I don't think there’s a way to activate turbo mode with blocks, but I know a way to detect if turbo mode is on. Here’s my solution:
- Make a new sprite or use an existing one.
- Write these scripts:
when gf clicked
show
go to x:(0) y:(0)
repeat (3)::{
move (10) steps
when gf clicked
wait (0.01) seconds
if <(x position) = (30)> then{
broadcast (start game v)
}else{
something that tells the player to turn on turbo mode::grey
stop [all v]
}::control
- N8_D_GR8_1
-
Scratcher
1000+ posts
Anyone know how to make a block that activates turbo mode?
You can make custom blocks run “without screen refresh” which is basically the same thing as turbo mode. Just check the “run without screen refresh” box when creating the custom block.
- Discussion Forums
- » Help with Scripts
-
» Anyone know how to make a block that activates turbo mode?