Game Center showExistingMatches = NO?

I’m using the gameNetwork Library for a turn-based iOS game and I would like to show the Game Center new game screen view directly even if there are existing Game Center matches.

Is there a way to send the GameKit showExistingMatches=NO; property to Game Center though gameNetwork? GameKit showExistingMatches reference

I’ve tried these methods already without success:

[lua]

gameNetwork.show(‘matches’, {minPlayers=2, maxPlayers=2, showExistingMatches=false, listener=showMatchesEventHandler})

gameNetwork.show(‘matches’, {minPlayers=2, maxPlayers=2, existingMatches=false, listener=showMatchesEventHandler})

gameNetwork.show(‘matches’, {minPlayers=2, maxPlayers=2, existing=false, listener=showMatchesEventHandler})

[/lua]

If this is not possible please let me know so I can add it as a feature request.

Hi @animonger,

We don’t currently support this. If you’d like to file a feature request, please do, so it gets on our radar for a potential addition.

Thanks,

Brent

Thanks for the info, Brent!

Feature request 6173319

This feature is already supported in gameNetwork.show() but not very well documented.

Use

gameNetwork.show( “createMatch”, parameters)

to show the Game Center new game screen (Invite Friends, Auto-Match) directly even if there are existing Game Center matches.

 

Use

gameNetwork.show( “matches”, parameters )

to show existing Game Center matches screen, if no matches exist it shows the Game Center new game screen (Invite Friends, Auto-Match).

 

Thanks to those who voted for the feature request. If you remove your votes I’ll delete it.

Hi @animonger,

We don’t currently support this. If you’d like to file a feature request, please do, so it gets on our radar for a potential addition.

Thanks,

Brent

Thanks for the info, Brent!

Feature request 6173319

This feature is already supported in gameNetwork.show() but not very well documented.

Use

gameNetwork.show( “createMatch”, parameters)

to show the Game Center new game screen (Invite Friends, Auto-Match) directly even if there are existing Game Center matches.

 

Use

gameNetwork.show( “matches”, parameters )

to show existing Game Center matches screen, if no matches exist it shows the Game Center new game screen (Invite Friends, Auto-Match).

 

Thanks to those who voted for the feature request. If you remove your votes I’ll delete it.