jdtaylor
jdtaylor

Reputation: 334

Creating a browser based RTS game without a service

I'm planning on creating a browser based RTS game using ASP.NET and MySQL.

I was wondering if there is a way to do this without having a central server running all the time - i.e. if all commands can be completed client side when a player logs on and performs an action, and then the database keeps a record of this.

Thanks

Upvotes: 1

Views: 696

Answers (1)

thedaian
thedaian

Reputation: 1319

Simply put, no, it's a bad idea. Mostly for one of the main rules of creating an online game: Never trust the client.

Now, there's nothing technical to prevent you from doing this, but plenty of limitations you'd have to work around, and because of the aforementioned rule, it wouldn't be worth it.

Upvotes: 2

Related Questions