Uh... Um... Hmm...
Will these blocks be in 1.5?
They report back with your computer's system time.
Right now I'm working on a Day / Night sim.
Offline
What is your password?
(*evil, menacing music*)
Offline
The-Whiz wrote:
DarthPickley wrote:
What is your password?
(*evil, menacing music*)
![]()
Come on, I said about Scratch!
By the way, this is what my password says when I type it in: ********
let's see what's every possible combination with 8 characters... I might make a project that works that out...
OK I was just about to then I got suspicious and worked out that there are I think 6634204312890625 possibilities... now all we need is a computer that will sit there for years testing every possibility!
Last edited by Jamohyperturbopro (2009-09-18 13:43:23)
Offline
LordNacho wrote:
what do i do if my prodject is too big? (i.e. over 10mb)
If thats the case, are you compressing it already or has it got a lot of music files?
If you compress the file then it usually fits and lots of music also tends to bump the file size up so you could try removing one or two
Offline
Wow, The-Whiz didn't even answer a question yet.
What things are missing from 1.0 that is in 1.4?
Offline
Jamohyperturbopro wrote:
The-Whiz wrote:
DarthPickley wrote:
What is your password?
(*evil, menacing music*)
![]()
Come on, I said about Scratch!
By the way, this is what my password says when I type it in: ********let's see what's every possible combination with 8 characters... I might make a project that works that out...
OK I was just about to then I got suspicious and worked out that there are I think 6634204312890625 possibilities... now all we need is a computer that will sit there for years testing every possibility!
The NSA has a machine that can do that in 5 minutes.
Offline
How many projects will there be on Scratch at midnight, New Zealand Time, on the 8th of March, 2012?
No, seriously.
How many versions of Scratch have there been in the past? It's currently 1.4 at the time of posting.
Offline
Chrischb wrote:
How many projects will there be on Scratch at midnight, New Zealand Time, on the 8th of March, 2012?
No, seriously.
How many versions of Scratch have there been in the past? It's currently 1.4 at the time of posting.
Counting the numerous betas and 1._.1s?
That's a question to ask the Scratch Team.
Offline
The-Whiz wrote:
Chrischb wrote:
How many projects will there be on Scratch at midnight, New Zealand Time, on the 8th of March, 2012?
No, seriously.
How many versions of Scratch have there been in the past? It's currently 1.4 at the time of posting.Counting the numerous betas and 1._.1s?
That's a question to ask the Scratch Team.
Okay.
Offline
Jamohyperturbopro wrote:
OK I was just about to then I got suspicious and worked out that there are I think 6634204312890625 possibilities... now all we need is a computer that will sit there for years testing every possibility!
We'd have to do 256^8 (256 is all ASCII [or Unicode?] characters) possibilities.
Also, these Date/Time blocks look awesome.
Rpgman7 wrote:
How do you make a platform game? I know how to make gravity. But how do I make platforms and levels? Or to be more precise how do make a door dissapear and reappear?
Try reading this tutorial, if you want scrolling: http://scratch.mit.edu/projects/Rukqo/115602 For the door, use the Show and Hide blocks. For levels, use a variable and use different costumes on each part of the level.
Last edited by technoguyx (2009-09-20 12:11:56)
Offline
do you know how to make a sprite jump?
Offline
Yellow-blur wrote:
do you know how to make a sprite jump?
[blocks]<when[ space ]key pressed>
<repeat( 20 (or any amount)
<change y by( 5 (again, any amount works)
<end>
<repeat until><touching color[ whichever is the ground's color
<change y by( -5 (any amount as long as it's under zero)
<end>[/blocks]
Offline
our teacher told us that we were going to make a pong game but the only problem was that we were not allowed to used "if on edge bounce thing". can u show me a script for bouncing off using the x velocity and y velocity thing?
Offline
<if><( <abs( <y position> <>> 169 )>
<set{ yvelocity }to( (( 0 <-> <{ yvelocity }> ))
add that script to script that tells the ball to move, in your pong game
Offline
The-Whiz wrote:
DarthPickley wrote:
What is your password?
(*evil, menacing music*)
![]()
Come on, I said about Scratch!
By the way, this is what my password says when I type it in: ********
So your password is a swear word. An 8 letter swear word at that. hmmm
Offline
Jamohyperturbopro wrote:
The-Whiz wrote:
DarthPickley wrote:
What is your password?
(*evil, menacing music*)
![]()
Come on, I said about Scratch!
By the way, this is what my password says when I type it in: ********let's see what's every possible combination with 8 characters... I might make a project that works that out...
OK I was just about to then I got suspicious and worked out that there are I think 6634204312890625 possibilities... now all we need is a computer that will sit there for years testing every possibility!
I think you'll find it's 16777216. If you're going to make a project that works that out, just make an anagram solver, that's what I'm doing at the moment.
Last edited by WeirdF (2009-09-23 11:55:27)

Offline
dusski wrote:
i don't know how to make a list and what is it for?
To make a list:
Go to the "Variables" section of blocks and click "Make a list".
What are lists for:
Lists are for storing large amounts of data that cannot be stored in a variable. You can think of a list as a storage container for variables.
Offline