Questions tagged [gamekit]

GameKit is an Apple Framework that provides classes to create social games.

The Game Kit framework provides three distinct technologies: Game Center, Peer-to-Peer Connectivity, and In-Game Voice. You can adopt each technology in your application independently of the other technologies.

See : http://developer.apple.com/library/ios/#DOCUMENTATION/NetworkingInternet/Conceptual/GameKit_Guide/Introduction/Introduction.html

867 questions
0
votes
0 answers

reverse engineer IOS Gamekit session messages

I want to write a third party Iphone app that can receive messages from a peer to peer GameKitSession. Is it possible to reverse engineer peer to peer messages when you have the sessionId? I have tried Wifi sniffing, but cannot see any data…
angel of code
  • 686
  • 8
  • 25
0
votes
1 answer

GameKit best score and last achievement

I'm wondering if there is a simple a way to retrieve the best score and the last achievement that has been unlocked for the local user in an iOS app. Thanks for your advices !
Pierre
  • 10,593
  • 5
  • 50
  • 80
0
votes
1 answer

sending dynamic data

I define a struct for the move typedef struct { MsgType msgType; int newFallenStonesSize; char *newFallenStones; } MsgMove; And send the data like this: MsgMove message; message.msgType = MsgTypeMove; message.newFallenStones =…
Daniel
  • 20,420
  • 10
  • 92
  • 149
0
votes
1 answer

Game Center: how to get user's score?

I have made a game which is supported by game center, it logs on the user and submits his score correctly, but I now need the game getting the score from game center, to let the user retrieve his score if he had to restore his device or to continue…
yeker3
  • 141
  • 1
  • 2
  • 15
0
votes
1 answer

Using gameKit peer-to-peer connectivity when app is in background (e.g. while multitasking)

I am trying to build an app that will use the game kit peer-to-peer connectivity on the iPhone in order to find other people around you who are using the app and exchange information with them. My question is- is it possible to use peer-to-peer…
byteSlayer
  • 1,806
  • 5
  • 18
  • 36
0
votes
2 answers

GameKit Achievement for Rating iOS App?

Quick question. Tried googling and SO and couldnt find anything like this. Is it allowed to create a gamecenter achievement for things that aren't actually progress in the game? For example can you have an achievement for: Emailing Me with…
bkbeachlabs
  • 2,121
  • 1
  • 22
  • 33
0
votes
1 answer

Xcode: How do I end a 2 player turn based multiplayer match with a winner and loser using GameCenter?

I've had a bit of trouble finding any information on this and all the code samples I come across are based on the match ending in a tie for all players. In my 2 player turn based game I want to be able to end the match with a winner and loser. With…
0
votes
1 answer

Why GKSession always tries to use bluetooth when running on a device and doesn't on simulator?

I'm trying to implement GameKit connection without using GKPeerPickerController. What i need is to establish WiFi connection, not bluetooth. This is how i do that self.gameSession = [[GKSession alloc] initWithSessionID:@"test" displayName:nil…
Andrey Chernukha
  • 21,488
  • 17
  • 97
  • 161
0
votes
1 answer

GameCenter skinning

Is it possible to take data we get from GameCenter and create our own skin for it? If so where can I access all the data we receive? The important data I want is current matches, everything else is not a big deal to me. Can anyone help?!
Lagoo87
  • 621
  • 1
  • 6
  • 20
0
votes
1 answer

Cannot connect over GameKit

I'm having the following problem: i'm developing a multiplayer game using GameKit. I'm testing the multiplayer using iPad and iPod. There have never been any problems to connect these devices to each other but today they stopped seeing each other.…
Andrey Chernukha
  • 21,488
  • 17
  • 97
  • 161
0
votes
3 answers

gamekit UIRequiredDeviceCapabilities

Must 'gamekit' entry in UIRequiredDeviceCapabilities be present to game center to work? I've been posting scores to leaderboard, from three different accounts, on three different devices, but the scores never shows up. and all of them says "Not…
0
votes
1 answer

How can I terminate a connection to particular peerID?

I'm using GKSession in PEERMODE to establish multiple connections with different devices. [I(denoted as Z) have 3 connections with A, B and C.] (All with same session ID) <-----> A Z <-----> B <-----> C But I can't figure out…
Marco
  • 1
  • 1
0
votes
1 answer

Time taken to send iOS GameKit message

So I am trying to write a simple app that will connect to another iPhone and send messages over bluetooth, and it seems like the best way to do this is using the GameKit. If I am wrong, please point me in the right direction now before you read this…
jakehschwartz
  • 1,005
  • 2
  • 13
  • 32
0
votes
1 answer

Getting info out of gklocalplayer (email nickname)

I am building a game where I use the serves of Apple in combination of my own server and I wand to get the e-mail info of the local user and the nickname
Buunk
  • 19
  • 3
0
votes
1 answer

Game Center? Xcode

I have been working ver hard on Game center. I have tested so many codes I've lost count. I would love to know how to automatically submit score as well here are some codes i have used but i am not sure if this will…
JohnAnge Kernodle
  • 239
  • 1
  • 3
  • 20
1 2 3
57
58