How to create a PlayFab Multiplayer Game Server Build
You can convert your regular game server build into a PlayFab Multiplayer Game Server Build by integrating it with the PlayFab Game Server SDK (GSDK).- Download the GSDK you need
- Open your existing game server code project and add the GSDK as a dependency
- Implement essential functions (at minimum the Start and ReadyForPlayers methods) using the APIs in the GSDK. For code snippets, see Integrating game servers with GSDK.
- Build and compile the game server executable to create the PlayFab Multiplayer Game Server Build
Consider using our open source debugging utility LocalMultiplayerAgent to test your game server before uploading it into MPS. This will help prevent unnecessary costs in case your game server fails to start or is not properly integrated with GSDK. You can download LocalMultiplayerAgent here and check the instructions here. LocalMultiplayerAgent can also be used for iterative testing/debugging during the development of your game server.
