When I'm doing my project and then the numbers and letters disappear but the character still
Offline
jebis wrote:
how do i make it so that the variable called points, still increases when 2 sprites touch but more slowly. so the game doesnt end quickly
Sprite 1 Script
Start
Forever If <Toughing[Sprite2]>
Repeat Until <Not<Touching[Sprite2]>
Change [points] By (1)
Wait .5 Seconds
Last edited by laptop97 (2011-08-09 10:14:52)
Offline
If you want the points to increase only once, use:
[blocks]
<when green flag clicked>
<forever if><touching[ Sprite2
<change{ points }by( 1
<wait until><not> <touching[ Sprite2 >>
<end>
[/blocks]
Offline