Calling matchmaker from server

Is it possible to add a matchmaker entry from server code (from a Go module)? I would like to customize the users queries and properties depending on sensible information only accessible in the server

Thanks in advance.
Kind regards

Matchmaking is strictly tied to active client socket connections so starting the matchmaking process must be done by the client.

If you want to fully control the contents of the matchmaking query and properties then allow the client to request to be matchmade as normal, and register a before hook on that operation that either validates or completely replaces the contents for the query/properties. The realtime message type you’ll want to intercept is “MatchmakerAdd”.

1 Like