I have custom built as a little personal project a website coded in php that is a MMORPG.
It is at the minute just a personal private project but I am stuck as what to do when it comes to users battling each others' accounts!
I have four stats for each user which they can train at a gym if they wish too, so the differences in stats could be huge or not so much.
The stats are:
Speed - How fast they can hit
Strength - How hard they hit
Agility - How well they can dodge attacks
Endurance - How long they can fight for / How good their defence is
All these numbers are floats with upto 6 decimals, I was wondering if anyone on gamedev SO could point me into a good direction of how writing a script so each player could battle each other with all these factors involved.
At the minute I am just working out percentage differences of the two and using that, but it is isn't very consistent!
Thanks