00:00
00:00
Newgrounds Background Image Theme

Kenjo12345 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 "Simple RPG Tutorial :>"

Cool

This really helps!
It works
No shit music
Shows you what to do
And the reveiwer below must be mentally retarded

lolbno responds:

Glad you like it

BLA JOO FAKA

JU STEAL

lolbno responds:

BLA JOO FAKA
JU PISS UP YOUR MUM

Lol, the below score makes no sense.

Someone made this exact same thing yesterday. It is changed a bit, like I THINK that you make a rotating turret thing, it's hard to tell though since this is so crappily made. You couldn't tell what was going on, you didn't explain the code. Your drawings were horrendous, you could only move in the four cardinal directions... It was overall just horrible. I voted 0 but it is kind of worth a seven, but simply because I THINK that you made a rotating gun turret thing.

Anyways, horrible job. Please remake, like you did today, from yesterdays.

lolbno responds:

DarkTails100 made the codes and some designing
I done most of the design though
All the codes were mine and DarkTails100.We made it to keep it simple.We didnt want it looking really cool because its just a tutorial.And we didnt want it saying
"OHHH LOOK AT ME!IM A FLASH WATCH ME!"
We just kept it simple for anyone wanting to make a simple RPG type flash.It only has four directional movement because in games you dont see your charecter facing left but walk diagonal.The drawings were ment to be bad because we just wanted to show you what to do.Not show you some hardly readable picture of flash.Anyway your tutorial was worse.Shitty sound,lower reveiw AVG,and iit didnt show me anything when i first had flash.So dont be gay and say mines worse when its better than yours.

One of the better tuts I've seen.

No crappy mp3 going on in the background.

Simple, stright to the point.

Working examples.

Stayed on topic.

Gave other things that are useful to RPG styled flash.

It. Works.

You win 5 internets.

lolbno responds:

Thx for the review

kinda lame

Ugly, almost no sound and the script isn't explained at ALL, making it more of a "Make-your-own-RPG kit" than tutorial.

Also, this code lets you have 8-directional movement, instead of only the 4 in your example:

_root.onEnterFrame = function() {
//Movement controls
character._x += character.dx;
character._y += character.dy;
if (Key.isDown(68)) {
character.dx = [Speed];
} else if (Key.isDown(65)) {
character.dx = -[Speed];
}
if (Key.isDown(87)) {
character.dy = -[Speed];
} else if (Key.isDown(83)) {
character.dy = [Speed];
}
if (!Key.isDown(65) && !Key.isDown(68)) {
character.dx = 0;
}
if (!Key.isDown(87) && !Key.isDown(83)) {
character.dy = 0;
}

I changed the areas where you put the amount to move by with [Speed]. This also uses WASD instead of the arrow keys.

lolbno responds:

m