Tagged Questions
1
vote
2answers
298 views
Passive skills and items
I'm making a small text browser RPG game using PHP, MySQL and Java Script (and jQuery). All the items are saved in the MySQL database.
Every now and then a character have to make a skill roll (Talk, ...
1
vote
1answer
210 views
How can I keep track of a battle log on a web game?
Recently I started working on a Web turn-based PvP RPG game. Now I'm working on the battle system but I encountered some issues:
How can I keep track of everything that happens in the battle? It ...
0
votes
2answers
1k views
(XNA) What's a Good Database Program for a Turn-Based RPG?
I'll begin by saying that I feel my level of expertise matters here, and so I have about a year worth of experience as a programmer in the C# language and most of the .NET framework as a whole, but ...
1
vote
3answers
696 views
How do RPG store and retrieve maps?
I'm making a very basic online RPG (2d, and instead sprites I use characters, like a roguelike) and I still haven't figured out how to store and retrieve maps. Until now I used a text file that's ...
1
vote
2answers
1k views
NoSQL (CouchDB) database design for MMORPGs
Are there any pratical examples of database implementation for an MMORPG in CouchDB? Even a detailed thesis? I've looked but found very little on practical examples and not even find any good UML ...
4
votes
2answers
998 views
RPG Monster-Area, Spawn, Loot table Design
I currently struggle with creating the database structure for my RPG.
I got so far:
tables:
area (id)
monster (id, area.id, monster.id, hp, attack, defense, name)
item (id, some other values)
loot ...