Pages: 1
Topic closed
How do you make it appear so that when a sprite is jumping and it does not get to a platform, it falls down?
Offline
Check out this wiki article.
Say somethIng like thisWhen green flag clickedForever If ( not touching ( color of platform))Repeat until (touching ( color of platform))Change y by -5
Thanks SOOOO Much!P.S. How do you make a system that can keep track of points that you earn???ThanksFortmcas
fortmcas wrote:Thanks SOOOO Much!P.S. How do you make a system that can keep track of points that you earn???ThanksFortmcas
Use variables tell me what action it has to do to get a point and I can help more
Also, you could try using lists. They can store a list of of different scores and points (hence the name). Check out the example project FruitcraftRPG (under games).
My sprite would have to reach certain platforms(heights for the game) to collect points. When it gets to the final prize, it also gets bonus points.