How can I keep track of a battle log on a web game?

Posted by Jay W on Game Development See other posts from Game Development or by Jay W
Published on 2012-06-17T22:46:32Z Indexed on 2012/06/18 3:23 UTC
Read the original article Hit count: 216

Filed under:
|
|
|
|

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 should keep track of the characters on the field, inventory, the damage done etc.

I first thought I would simply put it in the (MySQL) database, but I think it will be too much. Especially if several people are in a battle. I thought of puting this in sessions or cookies but I don't think thats reliable.

Does anyone have an idea how I can do this?

© Game Development or respective owner

Related posts about JavaScript

Related posts about rpg