1. Does any one know how to make the actors move like the space invader game aliens?
you have to create a path i think...i never really played space invaders
=D
2. How can I have it check to see if all aliens are dead then load next level?
to load next level, you have to creat another game and link them
in you SHIP you can put
"create actor" add action:script editor
then write...
int woompaloompa;
woompaloompa = 0;
if(woompaloompa>=
X)
{
LoadGame("
secondlevel.ged");
}
in your ENEMY now...
"destroy actor" add action: script editor
write...
woompaloompa = woompaloompa+1;
//
X X is the number of enemies in the map
//
secondlevel.gedsecondlevel is the name of your next map(you game will load another game)