How can I keep track of a battle log on a web game?
- by Jay W
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?