Pages: 1
Topic closed
So for my project I wanna make the ability for a transporter to take me to the next level so how do I make it so that when my character goes into the transporter a black screen with the words: LEVEL 2! Will appear?
Bonus question:For my other project How do I make a level up system so that when my character kills an enemy the bar will fill and when its full the words: LEVEL UP! Will appear?
Offline
Script for main sprite:
When green flag clicked
forever
if touching transporter
broadcast level two and wait
end script
Level two sprite's scripts:
When green flag clicked
hide
go to front
When I receive level two
show
wait two secs
hide
You can have another option of just dimming the level two sprite with a nive effect to it, with using the script set ghost effect to 100 to hide it, and then slowly forever change ghost effect by -10 to show up, and then change ghost effect by 10 to go back hiding. Hope you found this helpful!
Offline
For Your Bonus Question, You could make a variable. Every time you defeat an enemy, use the block: add (How many EXP or level up points the enemy gives you) to Variable EXP (Or What ever you called it)
Offline
: (
Offline
Topic closed
Pages: 1