Thursday, September 10, 2009

CanVart

Here is a project i worked on for a few days =]

CanVart

or just see it below =]





Monday, August 3, 2009

RPG Tutorial - Part 2

Is your main character sketched ? if yes, now its time to start programming.
So, our RPG is going to be 3rd person, and it will have an upper view.
SO now what you will do is draw you character.
If you want, look for existing RPG's like final fantasy, pokemon, and so many others they have out there.
Once you have the design, make it a movie clip and its time for actions.

onClipEvent (load) {
speed = 10;
}
onClipEvent(enterFrame) {
if(Key.isDown(Key.UP)) {
_y-= speed;
}
if(Key.isDown(Key.DOWN)) {
_y+= speed;
}
if(Key.isDown(Key.LEFT)) {
_x-= speed;
}
if(Key.isDown(Key.RIGHT)) {
_x+= speed;
}
}

basically, what it does is move the character to the direction you want. Also you can change the speed to your will.

***I WILL come back to this post VERY SOON and post previews and continue with the tutorial. just wait a few days.

RPG Tutorial - Part 1

Nooooow, i know i said i was going to post a platformer tutorial, but i will make it in flash, as a sequel to platformer universe. so, instead, i thought about writing a RPG tutorial !! yaaayyy... haha

*Do you know what RPG stands for ? No ? it means Role-Playing-Game .

ok, so in this first part we will just think about our game ok !?
When i was a kid i used to play Dungeons&Dragons on my friends basement, we would stay up all night slaying trolls and saving princesses. Why am i saying this ? Because your RPG must have a theme. D&D had sort of a medieval theme, but there are lots of other options. It can be something from the future, based on movies, games, anything you want.

Now, also, when i was a kid, the RPG games started to show up, for ATARI, MEGADRIVE, SNES, and even for the PC. You know what they all had in common ? A main character.
So, that means it is time to come up with a main character. But there is 1 condition: it has to match your theme. If you chose an old west theme, dont come up with an elf archer.
Now, once you created a character (AKA char), you are going to create classes for it. use your imagination here. ARcher, wizard, thief, assassin, knight, priest, cowboy, cop, robot, psychokinetic, whatever you want, as long as it matches your theme, ok ?!

So now you have in mind a char, a theme, and some classes for your char, so now its time to come up with a story. Take your time here, 1 week if needed. As a good developer, you probably already have pages of sketches of your char don't you ? (i know you dont haha, but you should start =]) so, for the story, i want you to write it, write about the char's origins, his wishes, where does his story begin? where does it ends...

And as the story is created, a lot of other characters are revealed, we will call those NPC's (Non Playable Characters). Sketch them too !!

If you did everything listed above, you are ready for lesson 2 !!