Hi,
I want to make one sprite to create another.
The reason that i want this is so that i can have a series of bombs creating.
E.g.
Game starts
Ten secs later one bomb appears
Ten secs later another bomb appears
Ten secs later another bomb appears
This would repeat its self infinitely
If this is possible then can someone please to me how.
Offline
It is impossible in Scratch 1.4. However, in Scratch 2.0, you will be able to clone sprites.
Offline
sonicfan12p wrote:
It is impossible in Scratch 1.4. However, in Scratch 2.0, you will be able to clone sprites.
You mean IS possible in 1.4, but it would cause a lot of programming, with a list storing it then the program reading it and stamping where it tells to go etc.
Offline
Jellysnake wrote:
Hi,
I want to make one sprite to create another.
The reason that i want this is so that i can have a series of bombs creating.
E.g.
Game starts
Ten secs later one bomb appears
Ten secs later another bomb appears
Ten secs later another bomb appears
This would repeat its self infinitely
If this is possible then can someone please to me how.
As sonicfan12p pointed out, a cloning feature is being added in Scratch 2.0, and as SFollis showed, an alternative could be a lot of stamping, though if you're going to have one bomb appear every 10 seconds, and not more, then you could do something like this:
when gf clicked forever show go to x: (0) y: (180)//Or whatever you want. repeat until (touching [ground v]?)//Replace with a conditional that does the same thing. change y by (-1) end hide wait (10) secs//Somewhere around here...
Last edited by ErnieParke (2013-02-03 16:44:24)
Offline