Platformer Demo

Platformer Demo

by Cowboy_Creed
不具合を報告
ゲームを通報
Loading ad...

Platformer Demo

評価:
2.2
リリース日: February 09, 2009
最終更新: February 09, 2009
開発者: Cowboy_Creed

Platformer Demo のタグ

説明

I need some help with this platformer. I'm not really sure how to make an exit or how to make the character die after falling off the landscape. Could somebody help me with my coding and make this an actual game someday?

遊び方

arrows to move

コメント

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.