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"

WOW xD

nice tutorial men!

Need help (the ratings are just temporary)

Ok, I use Macromedia Flash MX 2004, and i can get to the point where you say how to jump, but when i right click my character, the only options I get are: Cut. Copy. Paste. Select All. Deselect All. Distort. Envelope. Smooth. Straiten. Distribute To Layers. Convert To Symbol... and Timeline Effects > Assistants, Effects, and Transform/Transition. Im not sure why, i really want to make a game, but it just wont let me find the action script anywhere, I've looked under everything... please PM me if you know how to help.

good but

lol, it says to right click on the ground then go to panels then instance buuut, panels isnt there ? help someone ?

other than that great.

Thank you

It helped me a lot! Also thanks to Goutenkou or somethin for that extra bit of actionscript. stop ();
function addToslot (item)
{
if (!item.found)
{
item._x = itemslot1._x + 5;
item._y = itemslot1._y + 5;
item.found = true;
}
}

not bad

thanks for this, it helped me figure some things out. for people having issues with the picking up items thing, if you're using a version of flash like me, i had to change a few lines,

on this part :

currentslotnum = 1;stop ();function addToslot (item) { if (!item.found) { item._x = eval("itemSlot"+currentslotnum )._x; item._y = eval("itemSlot"+currentslotnum )._y; item.found = true; currentslotnum++; }}

change it to
stop ();
function addToslot (item)
{
if (!item.found)
{
item._x = itemslot1._x + 5;
item._y = itemslot1._y + 5;
item.found = true;
}
}

the other one makes no real sense in this case, most of it's unnecessary