Platformer Demo

Platformer Demo

von Cowboy_Creed
Fehler melden
Spiel melden
Loading ad...

Platformer Demo

Bewertung:
2.2
Veröffentlicht: February 09, 2009
Zuletzt aktualisiert: February 09, 2009
Entwickler: Cowboy_Creed

Tags für Platformer Demo

Beschreibung

Ich brauche etwas Hilfe bei diesem Platformer. Ich weiß nicht genau, wie ich einen Ausgang machen oder wie ich den Charakter sterben lassen kann, wenn er von der Landschaft fällt. Kann mir jemand beim Programmieren helfen, damit daraus eines Tages ein richtiges Spiel wird?

Spielanleitung

Pfeiltasten zum Bewegen

Kommentare

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.