Tagged Questions
4
votes
3answers
233 views
Is it worth having AI opponents step in for disconnected players in an online multiplayer card game
I have an online multiplayer card game resembling spades/bridge and I want to implement a system that autoplays when a client disconnects. Right now, there is a client and server. In the new system, ...
4
votes
1answer
178 views
How to develop multi-player game without involving server side code?
There have been lot of cloud based frameworks released in past few years. They provide real-time communication among users but does not allow developers to write server side code.
So, how can we use ...
6
votes
2answers
156 views
What to do with old data?
I have a game - virtual soccer manager. It is browser based game. It is split into 'seasons' each of them takes around a half of a real year. The central game element is a soccer match, each team ...
4
votes
1answer
92 views
Handling Different Aspect Ratios for a Multiplayer Game
I'm currently designing a competitive 2D, side-scrolling multiplayer game and I want support full screen play at any aspect ratio (e.g., 4:3, 5:4, 16:10, 16:9). Doing that is not so much a problem, my ...
1
vote
2answers
445 views
Multiplayer game sdk for ios and android
I am working on a multiplayer game supporting Android and IOS.
For IOS Game-Center seems promising. But its IOS only.
OpenFeint could be a option, but now GREE has stopped supporting it.
Is there ...
0
votes
0answers
93 views
How to manage own bots at the server?
There is a game server and people can play in game rooms of 2, 3 or 4. When a client connects to server he can send a request specifying a number of people or range he wants to play with.
One of this ...
0
votes
1answer
147 views
Efficient existing rating system for multiplayer?
I would like to add a rating for online version of a board game. In this game there are many game rooms each normally having 3-4 people.
So I expect that player's rating adjustments (RA) should ...
2
votes
1answer
174 views
Does concurrency inherently introduce “randomness” into a game?
When a game is implemented with concurrency (as most games are), does this necessarily, by its very nature, introduce an element of randomness into the game that is outside of the players' control?
...
3
votes
6answers
389 views
Developing an ELO like point system for a multiplayer gaming site
I'm currently working on a gaming site where users will submit virtual players for different games, like Chess, Nash, Backgammon, Go, etc. The idea is that users don't compete themselves, but through ...
15
votes
6answers
1k views
Handling player logoff and logon in a persistent world without breaking immersion
One problem I've never seen fixed in any persistent online game is how to handle player logon and logoff without the characters just popping in and out of the world. My first thought is to simply ...
-1
votes
1answer
149 views
Game show game engine [closed]
So, I am pretty new to the world of game development, so I am a bit fuzzy on what I require. Could someone suggest a game engine that I could use? I need it to be light weight (my game won't require ...
0
votes
1answer
168 views
Handling Latency in Multiplayer Shoot-em-ups
I had an idea for an architecture, and I was wondering if anyone has implemented something like this or has used AWS or some other service to help?
I thought about using NodeJS + SocketIO to handle ...
4
votes
2answers
207 views
How to do simultaneous action without it being real time?
This is really a pacing question, but there's no tag for that:
The general concept is that the players are working in a team and need to be able to react to eachother's movement and observations as ...
5
votes
2answers
2k views
Realtime multi-player game design principles for Node.js
I've been reading the Valve article on multi-player networking which has been adapted from Yahn Bernier's 2001 paper called Latency Compensating Methods in Client/Server In-game Protocol Design and ...
2
votes
4answers
449 views
Alternatives to a leveling system
I'm currently designing a rough prototype of a mecha fighting game.
These are the basics I came up with:
Multiplayer (matchmaking for up to 10 people, for now)
Browser based (HTML5)
2D ...