TIGSource Forums

Developer => Technical => Topic started by: Radica1Faith on May 16, 2009, 02:56:36 PM



Title: Simple Mass Battle System
Post by: Radica1Faith on May 16, 2009, 02:56:36 PM
I'm working on a simple browser based MMO RTS using PHP + mySQL. www.jetpackfandango.com (http://www.jetpackfandango.com)
It nothing exciting yet, just plain text, and the ability to build one type of unit, gain income overtime etc. And I was wondering (forgive me if this is the wrong place to ask) if anyone had any examples of simple mass battle systems I could look at to get inspiration, like the ones used in other MMO browser based rts's.


Title: Re: Simple Mass Battle System
Post by: Radica1Faith on May 16, 2009, 10:58:31 PM
found a good one, if anyone is interested.
http://www.farlandworld.com/battle.html (http://www.farlandworld.com/battle.html)


Title: Re: Simple Mass Battle System
Post by: bateleur on May 17, 2009, 12:06:34 AM
I've not looked into this sort of thing much, but one piece of advice I'd give you from when I used to play tabletop wargames (really quite a lot) is to make sure you leave your system flexible enough to adjust in response to playtesting.

Any game with multiple unit types needs weeks and weeks of playtesting to get it reasonably balanced. During this time things will go wrong and if you have no way to adjust the game in response then you're stuck with something that won't play well. (And not everything can be fixed with stat tweaks.)


Title: Re: Simple Mass Battle System
Post by: Matt Thorson on May 17, 2009, 04:54:58 PM
Just something I noticed: You game probably isn't an RTS if it's being coded with just PHP and MySQL.  RTS stands for 'Real Time Strategy'.  You're probably looking for 'Turn-Based Strategy'.


Title: Re: Simple Mass Battle System
Post by: Radica1Faith on May 18, 2009, 05:30:19 AM
Quote
Just something I noticed: You game probably isn't an RTS if it's being coded with just PHP and MySQL.  RTS stands for 'Real Time Strategy'.  You're probably looking for 'Turn-Based Strategy'.

I call it an RTS since you don't have turns, you can send your units out at any time you want, without having to wait for another persons turn.


Title: Re: Simple Mass Battle System
Post by: Radica1Faith on May 18, 2009, 05:50:36 AM
Quote
I've not looked into this sort of thing much, but one piece of advice I'd give you from when I used to play tabletop wargames (really quite a lot) is to make sure you leave your system flexible enough to adjust in response to playtesting.

Any game with multiple unit types needs weeks and weeks of playtesting to get it reasonably balanced. During this time things will go wrong and if you have no way to adjust the game in response then you're stuck with something that won't play well. (And not everything can be fixed with stat tweaks.)

Don't worry I thought ahead for this one. I made sure that to do any balancing, all I have to do is simply edit the values on a stats table that contains the stats for every unit.