The basics of an RPG (role-playing game)
Taken from flashbox.proboards15.com (my site)
Note: This is based on the Stick RPG game but I’ve added in some other stuff too.
Now bear with me I’m not sure if this will work because I just wrote this all without testing it so please report any errors.
First-of-all what you want to do is decide:
-
Your characters occupation(s) – Start off by deciding what you want your Playable Character to do. Pick a job that blends in with your characters surroundings e.g. it would work well if you had your character being a Mafia Hit man if he/she lived Italy
-
The characters appearance and personality – Decide now what your character should look like and their distinguishing character traits e.g. shifty eyes, giant head, Red, strawberry blonde, hair etc. Now pick a personality to match the look i.e. a person with shifty eyes could be a criminal or a drug dealer etc. And lastly pick a name for your character, a suitable name one which almost gives away the characters personality.
-
Pick your enemies, decide your friends – Your character will definitely need an enemy, pick a reason why and how that person is your enemy. If you’re going to have a no. of enemies you’ll need friends, someone to help you get the job done…
-
The Character’s Background – Lastly what you want to do is to decide the following questions:
• Where does your character come from?
• Who does he/she interact with? (Mafia stuff like that)
• Why is your character in the position they are in? (Unpaid debts to the Mafia etc.)
Now that you’ve got the background it’s time to open up Flash. Open up a new flash document. To start off draw out your character, from a birds-eye-view (from the top), animate it walking in an upward direction, the other directions will be handled in the action script of the game. Label the character “man.”
With your character done it would be best just to draw the background now and keep all the drawing and animating together. Draw your map; ignore logic when drawing it by showing the front and top of every building so you know what’s going on in each building. Your map should be several times the size of the visible screen in your game so that the map can scroll, the map only will move and not the character. You’ll need to add in some extra frames to show the inside of the buildings.
Now what you need to do is an inventory for your game. At the bottom of the screen draw any number of boxes i.e. these boxes will show up your items when you find them. Give these boxes the instances slot1, slot2 etc. With these boxes you’ll want to put in around five textboxes, one for health, occupation, days into the game, name, strength, charm and intelligence. Give each of the textboxes the variable (not instance name!) of what they are (just the one word.)
Now to start off your game insert a new scene (Insert --> Scene) above the existing scene(s) name this scene “Setup”. Name the already existing scene “game” This scene will be used to set-up all the variables. Insert an input text-box give it the variable “name.” The user then can input their own name into the textbox. Make sure you click the box labelled “show border around text” and Max. characters to seven, or whatever you want. Insert another input textbox for Days into the game and do the same for that but set the maximum characters to two and the allowed characters to just be numbers. Insert three more dynamic textboxes for Strength, Charm and Intelligence. Now for some action script insert this into the first frame:
function randomise () {
_root.strength=random(10)
_root.charm=random(10)
_root.intelligence=random(10)
}
By declaring it as a function it can be used again with a randomising button. Draw a “roll again” button. Give it actions.
on (release) { randomise(); }
That will randomise the values by the click of that button. Place another button on the stage with the writing “Go” or “Play” or something to that extent in it. Give the button actions
on (release) {
gotoAndStop("Game", 1);
}
And for the actual game…
Go to your “Game” scene and place in your character and the background. Select align (ctrl + k ) and centre your character on stage. Give the background the following actions.
onClipEvent (load) {
movespeed = 2;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
_x-= movespeed;
}
if (Key.isDown(Key.LEFT)) {
_x+= movespeed;
}
if (Key.isDown(Key.UP)) {
_y+= movespeed;
}
if (Key.isDown(Key.DOWN)) {
_y-= movespeed;
}
}
And give your character these actions
onClipEvent (load){movespeed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
play();
_rotation = 90;
_x+= movespeed;
}
if (Key.isDown(Key.LEFT)) {
play();
_rotation = 270;
_x-= movespeed;
}
if (Key.isDown(Key.UP)) {
play();
_rotation = 0;
_y-= movespeed;
}
if (Key.isDown(Key.DOWN)) {
play();
_rotation = 180;
_y+= movespeed;
}
if (Key.isDown(Key.RIGHT) && Key.isDown(Key.UP)) {
_rotation = 45;
}
if (Key.isDown(Key.LEFT) && Key.isDown(Key.UP)) {
_rotation = 315;
}
if (Key.isDown(Key.RIGHT) && Key.isDown(Key.DOWN)) {
_rotation = 135;
}
if (Key.isDown(Key.LEFT) && Key.isDown(Key.DOWN)) {
_rotation = 225;
}
}
Now place these actions in the frame.
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++;
}
}
And give the items that can be found these actions
onClipEvent (enterFrame) {
if (_root.character.hitTest (this)) {
_root.addToslot (this);
}
}
Now place a button somewhere, it should be one to add on to your intelligence e.g. a study button in a school. Place these actions in the frame that button is placed in:
if (moneyneeded>=moneyrequired) {
money=1
}
And give the button these actions
on (release) {
strength+=(10*money)
}
And that can be used for all the different things required for the game e.g. Buying beer and stuff.
Moving into buildings. Inside the map place a square outside the door with an instance of “step”
onClipEvent (enterFrame) {
if (_parent.man.hitTest (this)) {
_parent.gotoAndStop("insidebuildingframe");
}
}
Thats really all I need to show you without repeating myself or others.
Here are a few extra tutorials which may help you.
http://forums.xgenstudios.com/viewtopic.php?t=355 - Saving games
http://forums.xgenstudios.com/viewtopic.php?t=242 - Preloaders
http://forums.xgenstudios.com/viewtopic.php?t=7751 - Functions
http://forums.xgenstudios.com/viewtopic.php?t=8395 - Actionscript basics