I just need to know a couple things. for one, i need to know how to make a 1st person shooter game be able to kill eniemies. and there are multiple weapons so damage counts. I also need to know how to make it to where when you kill all the eniemies you go to the next level, a differint background. and more stuff like that.
Offline
you'll need to use variables
make one private variable to each sprite called health, and make it decrease (change by -damage) each time it gets hit, and when it drops below 0, hide the sprite. dont forget to initialize the variables to 100 or something at the beginning of the game. that way you can create harder enemies with more health etc.
about the levels, you can create a variable called 'monsters' and initialize it at the beginning to the number of monsters in the level, and each time a monster dies it should drop the variable by 1, and check if the variable equals 0. if so, make it broadcast 'next level', where you can switch background, reshow the monsters with more health, and maybe add another weapon as a bonus or so.
Offline
ok thanks. that was all i needed to know. now i can do everything myself. its turning out pretty good.
Offline
wait i still need to know how to import music. i can import sounds but not music.
Offline