Hi, I’m making a single player Flash RPG which uses a turn based battle engine. Something I would like to be able to have would be online turn-based Player vs. Player battles. Realistically, could this be accomplished with anything short of a socket server?
Thanks!
if it’s turn based PvP you could do it in PHP and mysql where a player logs in, sees if its their turn and makes move. This would cause the game to be pretty slow overall playwise but it allows users to take as much time as they wish to make a move.
Well if I did it like that, I would give each player, say, 30 seconds to move before it automatically skips them and goes to the other player.
then php isn’t your best option. Flash or something else would be your best bet, and yes if you want it mmorpg you will need a server thing with sockets.