Typing Speed Test Game in Scratch 3 (including how to make it)

  Рет қаралды 12,727

Surfing Scratcher

Surfing Scratcher

Күн бұрын

Пікірлер
@SurfingScratcher
@SurfingScratcher 4 жыл бұрын
SCRATCHY QUESTION: There's a link to the game in the description. Post your time and your personal best progress.
@goebro
@goebro 3 жыл бұрын
I got 1 word per year
@arenh8767
@arenh8767 3 жыл бұрын
7.38
@SurfingScratcher
@SurfingScratcher 2 жыл бұрын
@@goebro Your comment was 6 years in the making. That's legendary!
@Mutatedordinary
@Mutatedordinary 4 жыл бұрын
I think advanced clone usage has a lot of potential and is very interesting! Also, did you notice the new paint editor update? You can center the costume easier!
@SurfingScratcher
@SurfingScratcher 4 жыл бұрын
Advanced clone usage is about as close as one gets to object-oriented programming in Scratch. It's a powerful idea and if you can master it, then it will save you a tonne of time. Bear in mind that I believe there is a 300 clone limit in Scratch. I did see a post about the centring update! Feels much more precise now :)
@Mutatedordinary
@Mutatedordinary 4 жыл бұрын
Surfing Scratcher about the 300 clone limit, it is a pretty good idea to prevent irresponsible cloning, but it should be a hidden option? I don’t know whether that’s a good or bad thing. I also noticed in your custom block for printing letters you did not tick the option for run without screen refresh which would make all letters appear instantly. Just an observation.
@SurfingScratcher
@SurfingScratcher 4 жыл бұрын
@@Mutatedordinary Nice pick up. I forgot about that option when making it, but I kind of like the way it builds-in with a typewriter animation. I suspect the Scratch team bank on people who get to that level will be able to find that information out for themselves. I think it's on the Wiki somewhere but I can't recall where exactly. I remember discovering it making the Scratch Functions video and printing the checkered background. I could fit 300 perfectly on the stage. I should go back and centre those sprites now 😉
@Mutatedordinary
@Mutatedordinary 4 жыл бұрын
Surfing Scratcher lol I had a project and I went through and made sure they were all centered with that new feature!
@nDivertimento
@nDivertimento 6 ай бұрын
how come my first letter doesn't change colour when pressed? the rest of the sentence do change colour
@60sekunder
@60sekunder 2 жыл бұрын
How do I do if I for example wants to do so when you get under 5 sec then you get a message?
@estebanflores631
@estebanflores631 Жыл бұрын
Where did you get the background from?
@givennkatigbak1847
@givennkatigbak1847 10 ай бұрын
why is the validateletter not working
@ZakariaBelloula
@ZakariaBelloula 3 жыл бұрын
Thanks would never be enough bro
@yazanyousefabusall8555
@yazanyousefabusall8555 2 жыл бұрын
how do you add that yellow box at the beginning of "Generate Sentence..."
@Nathanidk
@Nathanidk 6 ай бұрын
those are comments just right click on a block or the screen and add comments you can type in well anything. Its useful for identifying the use of blocks
@wemakelowqualityvideos5383
@wemakelowqualityvideos5383 2 жыл бұрын
is there a way to randomise multiple texts? i'm making a thing and i need it to output a random sentence
@SurfingScratcher
@SurfingScratcher 2 жыл бұрын
Yep, create a list of all the possibilities and randomly selected an item from that list.
@nicholashanna9352
@nicholashanna9352 3 жыл бұрын
where did you get the background? i couldnt hear properly
@bephoreal
@bephoreal 2 жыл бұрын
I copied the exact same code but when i press print sentence, it only printed 1 letter.. how do i fix this??
@SurfingScratcher
@SurfingScratcher 2 жыл бұрын
Sounds like something might be up with the length of your loop. Trace through the instructions step by step and check the values along the way to see where it's going wrong.
@simpletongeek
@simpletongeek 4 жыл бұрын
This video has been brought to you by the letter "S". I usually use "jumps" or "dogs"
@drippyhh
@drippyhh 2 жыл бұрын
hello!! loved the video, but i was wondering: is there any way to make multiple sentences/challenges (like rounds)?
@SurfingScratcher
@SurfingScratcher 2 жыл бұрын
Certainly. You should remix the project and make it happen!
@Sky-jb9xo
@Sky-jb9xo 3 жыл бұрын
I have a question. When I tried typing the sentence the part where you have to press space bar the computer doesn't recognize it and doesn't work. I tried fixing it myself but seems like something has bugged or I am just missing something. thanks
@SurfingScratcher
@SurfingScratcher 3 жыл бұрын
Hey Phoenix, strange bug! Can you open a new project and see if a space key pressed event works in there to isolate the issue?
@mrg4melover
@mrg4melover 4 жыл бұрын
How do you add the yellow boxes for notes?
@SurfingScratcher
@SurfingScratcher 4 жыл бұрын
If you 'right-click' on the code area in Scratch, click the option that says 'add comment'. That should do the job.
@mrg4melover
@mrg4melover 4 жыл бұрын
Thanks ;)
@costavenizelou7548
@costavenizelou7548 4 жыл бұрын
Just a question how do u get the letters because i have been trying to make them but I am failing
@SurfingScratcher
@SurfingScratcher 4 жыл бұрын
Hi Costa, thanks for your question. Check out the link to the starter project so that you can check out how it works. All the characters are in a single sprite. scratch.mit.edu/projects/368488051/
@colinpayton1096
@colinpayton1096 4 жыл бұрын
I am so grateful for this channel. Question: I want my test sentence to include punctuation and capitals, but currently the way you have the user input validating requires the "key pressed?" for letter characters. How can I validate user input for "any key pressed"? My text rendering engine already includes all of those characters, but I can't quite figure it out.
@SurfingScratcher
@SurfingScratcher 4 жыл бұрын
Hi Colin, thanks for posting your question. The only workaround I can think of isn't going to be a great user experience. You could use an 'ask' block and the user could type in the field. You could then use the 'answer' block to read the input, but this isn't a realistic solution. Scratch has limited sensing abilities when it comes to key presses. Another workaround would be to connect an external device like a Makey Makey or micro:bit and map their button presses to punctuation. Another clunky workaround but this one would be a little more functional.
@colinpayton1096
@colinpayton1096 4 жыл бұрын
@@SurfingScratcher Thank you! I found one project that includes the whole keyboard with a different tactic (scratch.mit.edu/projects/19204741), but I try not to use anything until I fully understand it. I'll start watching some tutorials on the Makey Makey method!
@0false.sun0
@0false.sun0 3 жыл бұрын
y u underrated?
@MESRogerStudios
@MESRogerStudios 4 жыл бұрын
This is very helpful. Thanks!
@pasqualethene
@pasqualethene 2 жыл бұрын
My personal best score in typing is 116.4 wpm with 92.5% accuracy or today I got 118 with 87.5% accuracy
@aleksandarzaric3537
@aleksandarzaric3537 4 жыл бұрын
Great! It helped me.
@MelissaHarrismelement
@MelissaHarrismelement 4 жыл бұрын
First like and comment!
@MelissaHarrismelement
@MelissaHarrismelement 4 жыл бұрын
And first view!
@Judeinator9001
@Judeinator9001 4 жыл бұрын
113rd...
Scratch Cloud Variables: Learn to Encode and Decode Text Using Numbers
10:37
Reacting to my Old Scratch Projects!
9:41
Donutask
Рет қаралды 144 М.
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
My scorpion was taken away from me 😢
00:55
TyphoonFast 5
Рет қаралды 2,7 МЛН
Scratch Clones and Local Variables Tutorial
9:19
Surfing Scratcher
Рет қаралды 76 М.
I Made a Scratch GAME In Only ONE Sprite
6:47
ZonxScratch
Рет қаралды 594 М.
How To Type Faster (Tips for every stage 0  - 50 - 100 - 150 WPM)
4:16
"Save My Game!" 💾 Data Serialization & Escaping in Scratch
16:29
Making Flappy Bird using ONLY Hacked Blocks 🐤 Scratch
11:04
The STEAMist
Рет қаралды 222 М.
I Tried the $10,000/Month Side Hustle
24:54
viyaura
Рет қаралды 972 М.
I made maps that show time instead of space
10:44
Václav Volhejn
Рет қаралды 476 М.