Score: 10
"cool..."
date: October 8, 2007
but if you want to kill enemys here how to do it:
go inside your player MC and name the symbol of mario jumping to " jump" without
the marks. then go back outside of it and put this in your enemy (i needs to be called "enemy" or it wont work and your character needs to be called "player")
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.jump)) {
_root.enemy.gotoAndStop(2);
}
}
then go in your "player" again and name the symbol of mario running call it "run"
(note. when speech marks this means for instance name)
then add this to your "enemy"
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.run)) {
_root.Enemy.health(nextFrame);
}
}
your health bar needs to be called "health"
:D thats how you kill enemys :D
anyone can use this .....i dont really care .
October 8, 2007
Author's Response:
Thanks for the help man but I already taught myself how..=P. Play Mario Town 2 and then play the minigame called "The last survivor" Where you snap and break toads necks by jumping on there heads!! Thanks for the reveiw though and thanks for trying to help.