Platformer Demo

Platformer Demo

par Cowboy_Creed
Signaler un bug
Signaler le jeu
Loading ad...

Platformer Demo

Note:
2.2
Sortie : February 09, 2009
Dernière mise à jour : February 09, 2009
Développeur: Cowboy_Creed

Tags pour Platformer Demo

Description

J’ai besoin d’aide pour ce jeu de plateforme. Je ne sais pas trop comment créer une sortie ou faire mourir le personnage après une chute. Quelqu’un pourrait-il m’aider avec le code pour en faire un vrai jeu un jour ?

Comment jouer

flèches pour se déplacer

Commentaires

0/1000
jonb123 avatar

jonb123

Sep. 14, 2009

0
0

i give it a four since i would assume it ur first game.

Aertryn avatar

Aertryn

Aug. 01, 2009

0
0

SUX

RedFredMedia avatar

RedFredMedia

Feb. 16, 2009

0
0

and to make the character die if he falls off the cliff. ___onClipEvent (enterFrame) {
if (this._y>=900) {
this._x=30, 5;
this._y = 636;
_root.lives -= 1;
___pretty much, place it on the character actionscript. And it means if the characters position (x,y) execed a cetrtian number (in my case 900, but it should be about 100 more than the height of the stage) than decrease the varieble lives (you have to set a varieble called lives and do action scritp that when it is less than 0, the player goes to a next frame which is the game over) and it replaces the character at a nex (x,y) position. good luck with that

RedFredMedia avatar

RedFredMedia

Feb. 16, 2009

0
0

and sorry for all the slack other people give you, it happened to me also. They dont know how long and hard it is to make a game.

RedFredMedia avatar

RedFredMedia

Feb. 16, 2009

0
0

ahh, a fellow devoleper. You have done well so far. Its a very herd thing, making a game. I just finished my first platformer-Pantone Pandemonium. Took me forever. But this website is where i get all my stuff from

http://www.tutorialized.com/tutorials/Flash/Games/1

its really great. That and there was one on new grounds.com that helped me with my platformer. You have a good start. Keep working.