This sounds like a lot of work...in order to help, I'll probably need more details:
1) Are your levels in the background? or are they a sprite?
2) How does the score change? What events cause this to happen?
3) What type of animation do you want? Transition? Moving level parts? Enemies?
Answer these questions and I should be able to tell you everything you need to know.
Offline
1)yes level in background and and i want to change the sprite from level to level
2)for example , level 1 you have to get the score 10 to go to the next level and for level 2 you have to reach the score to 20 and for level 3 the score is increasing to 30
3)i want moving level parts or transition
Thank you
Offline
I just tried using the block function, but it didnt work. I'm going to replace them with something I can do. [When green flag clicked] [If (score)=(your amount)] [Set (platform) costume to (level 2)]
[When green flag clicked] [If (score)=(Your amount)] [Set (score) to (0)]
That was the level change anyway, the (score) is a variable btw. If you want, I could tell you how the points work.
Offline
saroon92 wrote:
can you tell me how the points work please?
Ok, You need to creat a variable called "points" for a start.
If there are point bubbles, it can go like:
[When green flag clicked] [If (touching sprite-prize bubble(or whatever))] [ Change (points) by (Your amount)] I think that should be it, but there may be more I haven't covered.
Offline
AtomicBawm3 wrote:
1) Are your levels in the background? or are they a sprite?
2) How does the score change? What events cause this to happen?
3) What type of animation do you want? Transition? Moving level parts? Enemies?
That's right. What are the answers?
Offline
Spiro0 wrote:
AtomicBawm3 wrote:
1) Are your levels in the background? or are they a sprite?
2) How does the score change? What events cause this to happen?
3) What type of animation do you want? Transition? Moving level parts? Enemies?That's right. What are the answers?
This is the answer:1)yes level in background and and i want to change the sprite from level to level
2)for example , level 1 you have to get the score 10 to go to the next level and for level 2 you have to reach the score to 20 and for level 3 the score is increasing to 30
3)i want moving level parts or transition
Thank you
Offline
Do your points reset after each level? It doesn't change much in this script, but it would be nice to know:
When Flag Clicked
set points to 0
set level to 1
forever
if points>level*10-1:
set points to 0
change level by 1
else
script of character here
Offline