00:00
00:00
Newgrounds Background Image Theme

dweebi just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Reviews for "RPG Platformer Tutorial"

Great!

Perfect and I love the sound..

For those of you that had a problem with that falling through the ground (people with flash MX) if you first press the movie clip "ground",then press properties (buttom of the page),then you can see a little blanc box that sais "<Instance Name>" just press it and then you can write "ground" and it works, great huh?^^

Hope it worked for you to..

Dude, u dont tell me HOW TO MOVE THE PLUS THING!

You jus say to move that plus thing, but u dont say HOW! HELP!!!

GREAT

but i always seem to fall strait through the floor >.<

this was a perfect tutorial for what i am trying

But there is one problem...Y O Y DOES IT FALL THROUGH THE GROUND AND INTO OBLIVION!!?? plz respond with some sensible response as to why it is ignoring the hitTest and falling passed the ground instance!? plz help me!!

otherwise it was a perfect tutorial
gj
-RomFom

Not bad.

I thought it was a bit slow, though. Watching that little guy slowly move around made me want a "just get it over with" button to go to the next thing.

About the first movement ActionScript: You have a "jumping" variable that sets whether the character is jumping or not. So "if (jumping == true) { vel_y -= 2;" means "If we're jumping, decrease y velocity (make us fall faster". And "if (Key.isDown(Key.SPACE) && !jumping)" means "If space is pressed AND we're NOT jumping". See, the "&&" means "and" and the "!" means "not". Simple, right?