I need to match 3 players, 1 wizard and 2 warriors as attributes. How can that be done with GKMatch? The following snippet is from my code
var wizard = true
enum Role : UInt32 {
case wizard = 0xffff0000
case warrior = 0x0000ffff
}
let matchRequest = GKMatchRequest()
matchRequest.minPlayers = 3
matchRequest.maxPlayers = 3
matchRequest.playerAttributes = wizard ? Role.wizard.rawValue : Role.warrior.rawValue
let matchMakerViewController = GKMatchmakerViewController(matchRequest: matchRequest)
matchMakerViewController.matchmakerDelegate = self
presentingViewController?.presentViewController(matchMakerViewController, animated: false, completion:nil)
Setting everything for two players, 1 wizard and 1 warrior, works fine but I need 2 warriors for a match.
Thank you in advance
Can you define 3 roles? Such as:
You would need some slight differentiation between the two warrior types ("red" warrior and "blue" warrior), or maybe randomly assign type1 or type2 to each warrior player.