00:00
00:00
Newgrounds Background Image Theme

ayya1 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 "Detailed RPG Tutorial"

pretty good

i really liked it. from the title, i guessed it would be some idiot who blatantly just pasted stuff from other tuts. really good stuff. i suggest you make another on a different subject. =)

good tutorial :)

found this when i saw someone used one of my songs, and i like it. i'll be sure to use the scripts sometime.

...

i liked this game, but i tried to add more walls, but the prog. doesnt allow me to do it ><

Hoeloe responds:

you must make sure that no two parts of walls have the same instance, so if you add a third wall, each part must have a different instance to all the parts from walls one and two, or it wont work

THE FLASH "AS" GOD COMETH!!!

ok the person b4 me and the author. I couldnt get the animations to stop for the walking either so i looked at the as u told us to put on the player and worked on it till i got this. **do everything else in the tut the same up to the part where it tells u to put in the codes to stop the animations when u press the keys**

1) ok instead of putting in the four codes he tells u too put in these codes in the designated spots. Put this first code in frame 5 of player inside of the mc u made to show walking. (ie click the mc when on frame 5 of player and go to actions then paste this)

onClipEvent (enterFrame)
{
if(!Key.isDown(Key.UP)){
this.gotoAndStop(1);
}
}

put this code for frame 6....(do the same as i told u for 5 only now for 6)

onClipEvent (enterFrame)
{
if(!Key.isDown(Key.DOWN)){
this.gotoAndStop(1);
}
}

this for 7..(same)

onClipEvent (enterFrame)
{
if(!Key.isDown(Key.RIGHT)){
this.gotoAndStop(1);
}
}

and this for 8..(same)

onClipEvent (enterFrame)
{
if(!Key.isDown(Key.LEFT)){
this.gotoAndStop(1);
}
}

And thats how i fixed my problem. If it doesnt work for u then u might be doing what i said wrong or it just works for me (i have flash 8 pro)
Also do everything else this guy says cuz its a great tutorial except for this one part that must be outdated or he copied his stuff from his own as wrong or somethin......

good

it's a good tutorial , but you should make the script stattic so people can't coppy and paste it, otherwise some people will blindly coppy your script and their game will work, but they just wont learn anything