Reputation: 1814
I'm working on a new multiplayer game for Android devices and we are planning on using GPGS to handle our lobby/ gameplay. We need to fake it until we make it and have enough users to bring the matchmaking queue down to a reasonable wait.
Is it possible to have bot users that work with GPGS? Is it possible to extend the matchmaking functionality to include this?
Upvotes: 3
Views: 1630
Reputation: 5076
You can implement bots at the game level. You can't emulate a match participant at the GPGS level, but it's pretty straightforward to do that from the game's layer. What you would do is something like this:
So, as far as GPGS is concerned, you only have human players, but in your game's logic, there are N bots as well as players in the game.
Upvotes: 6