(Yet Another?) Game Center Question

I was just wondering if there is a way to only support GC (Game Center) without having to go through OF. A couple months ago I thought I heard of someone getting their app rejected because it went through OF to use GC [import]uid: 59140 topic_id: 16776 reply_id: 316776[/import]

There is no way at the moment but it’s coming soon. Can anyone confirm that Apple rejects the GC through OF setup? [import]uid: 13507 topic_id: 16776 reply_id: 62813[/import]

As long as you make GC available through a button everything should be fine. our game Parallax got approved without any complaints.

function gotoGameCenter ()  
  
 local appURL = "gamecenter:"  
 system.openURL ( appURL )  
  
end  

cheers
-finefin [import]uid: 70635 topic_id: 16776 reply_id: 62820[/import]

Our fist game just approved last week, it has GC through OF.

Home screen just have a button to launch OF dashboard, I didn’t put a button to launch GC app.

Just make sure to OF -> GC mapping is correct and the OFGameCenter.plist file is included in the bundle, you’ll be just fine… [import]uid: 10478 topic_id: 16776 reply_id: 62821[/import]

Thats good to hear. One other question, do you have to make separate GC achievements (and if so could you point me towards the API’s) or do you make the achievements through OF and they just kind of transfer over to GC? [import]uid: 59140 topic_id: 16776 reply_id: 62834[/import]

Yes, you’ll need to define same achievements & leader boards on both OF control panel and the ITC game center panel for the app…

Check here…

http://www.mindthecube.com/blog/2010/12/adding-openfeint-and-game-center-to-unity-ios-project [import]uid: 10478 topic_id: 16776 reply_id: 62835[/import]

Do you mean this is what it would look like? Because that is Objective-C code. That link helped me understand it very well thank you, I just wasn’t sure if I missed some LUA code somewhere. [import]uid: 59140 topic_id: 16776 reply_id: 62915[/import]