Help regarding first RPG game
#1 Members - Reputation: 106
Posted 24 September 2011 - 05:34 AM
#2 Members - Reputation: 527
Posted 24 September 2011 - 05:38 AM
I have finally decided that I am now ready to create my original rpg game with original story. But I have no idea where I should begin with. I have a story and simple graphics ready to work. But I don't know what I should be doing. Should I be making maps first? or make a single player or should I first start with the turn based battle system. Could someone list out what I should be doing in order?? And how would I fit my story in all this process???
The whole thing will be much easier as a 2d game, as there are many 2d editors available (e.g. tiled which is a popular tile editor) which can let you build the levels. My first port of call is always to get the bare minimum of level data loaded. Then you can add characters walking around.
#3 Members - Reputation: 330
Posted 24 September 2011 - 05:44 AM
E.g. If I was making a clone of FF1 I would start with the core mechanics; battle system -> world map movement -> town movement -> character leveling -> enemy mobs -> inns -> shopkeepers, etc.
Then there's dialogue boxes, UI and so on that needs to be taken care - you can keep splitting the task up as much as you want and however you want; the important thing is that you do split it up into tasks. Otherwise, you'll spend a lot of time banging your head against an unmovable object.
~ Gabe
"I don't mean to rush you but you are keeping two civilizations waiting!"
~ Cavil, BSG.
"If it's really important to you that other people follow your True Brace Style, it just indicates you're inexperienced. Go find something productive to do."
~ Bregma
"Well, you're not alone.
There's a club for people like that. It's called Everybody and we meet at the bar."
~ Antheus
#4 Members - Reputation: 527
Posted 24 September 2011 - 06:47 AM
0) You need to be able to parse a .tmx file, which is the file format for tiled. Depending on what language you use, you might be able to find a parser; I have one for XNA just sitting around.
1) make a level load; part of this level is an arena, with impassable walls all around and a gate at one point. A gate can be created in a tile based game simply by making the terrain passable, and then changing it to be impassable when the gate is closed.
2) Add a proximity sensor in the center of the arena, give it a radius that ensures the player is not standing on the gate when it triggers. The trigger should close the gate and make an enemy appear.
3) A monster runs toward the player. When it catches the player, a battle starts.
This will give you a good stable platform for developing your battle system. Step 4) would be to make the battle screen in a turn based fashion.






