Okay so lately in my scratch class,i have been working on a project called "zombie storm"and it has 2 people called jack and cade and their trying to defeat zombies.
well,i really think cade should follow jack as you know,partners.
anyway,can scratch make"follow sprite one" in the new version of scratch?
cause someone might have the same idea.peace:)
Last edited by awsoumace (2010-12-03 16:22:57)
Offline
You could do this:
[forever]
[][point towards [Sprite1]]
[][move (5) steps]
[end forever]
Offline
Jonathanpb wrote:
You could do this:
[forever]
[][point towards [Sprite1]]
[][move (5) steps]
[end forever]
![]()
And if you didn't want the partner getting too close to Sprite1, you could do something like this
[forever]
[if distance to [Sprite1] > 20
[point towards [Sprite1]]
[move (5) steps]
[end if]
[end forever]
Offline