Questions tagged [openfeint]

A social gaming platform for Android and iOS. It was discontinued in 2012.

108 questions
2
votes
4 answers

OpenFeint is on only half of the screen

I'm trying to implement OpenFeint in my Cocos2D iPhone game, but here's something weird that I didn't find how to solve. Here's how OpenFeint looks like when I initialize it: http://img842.imageshack.us/img842/8564/screenshot20100926at520.png And…
Cokegod
  • 8,256
  • 10
  • 29
  • 47
2
votes
2 answers

OpenFeint + iPad + Hiding status bar

My app runs fullscreen no status bar but when OF starts and asks for which account to use, a status bar appears. How can I disable this? Note that when the OF connection window closes it leaves a white rectangle in place of the status bar.
Big Papoo
  • 167
  • 1
  • 13
2
votes
1 answer

Build Errors when installing openfeint 2.4.4 SDK

I have 12 build errors when trying to install the openFeint SDK. Build Invisible_Pong of project rocket_pong with configuration Debug Ld "build/Debug-iphonesimulator/Invisible Pong.app/Invisible Pong" normal i386 cd…
user291305
2
votes
1 answer

What is the advantage of using OpenFeint or Game Center?

my company is developing an iOS and Android platform game which needs to track high scores and achievements. We use Unity 3D. Is there a special advantage to using OpenFeint or Game Center for scoreboards, other than that they strip away the need…
pvukovic
  • 239
  • 1
  • 9
2
votes
3 answers

Android: Scoreloop vs OpenFeint

Any comparison between OpenFient and Scoreloop for Android?
Guy
  • 12,250
  • 6
  • 53
  • 70
1
vote
0 answers

Handling openfeint when offline in Unity Android

I have successfully integrated open feint in my Unity3D Android game using this link. http://support.openfeint.com/dev/example-integrating-ofunity-for-android-with-unity/ but i am having a problem that how can i handle the score when the device is…
sajjoo
  • 6,576
  • 20
  • 65
  • 86
1
vote
1 answer

Recover from failed score submission in openfient

If a game has no internet connection and hence fails to submit any highscores to openfeint, then how can it trigger a resubmission later on when there is a connection. At the moment I have it working so that openfeint only tries to submit a score…
Jack
  • 2,625
  • 5
  • 33
  • 56
1
vote
1 answer

Android Activities Initialize Only Once and Used again and again

I am looking for a way to Initialize all my game activities once and switch between them when needed. Is it possible if so how? How can I bring an Activity to front from another Activity without Initializing it again and not finishing the calling…
Jawad Amjad
  • 2,532
  • 2
  • 29
  • 59
1
vote
1 answer

OPEN FEINT error in Android App

15 reports java.lang.RuntimeException: Unable to start activity ComponentInfo{com.oas.fruitkungfufree/com.openfeint.internal.ui.IntroFlow}: java.lang.NullPointerException at…
Jawad Amjad
  • 2,532
  • 2
  • 29
  • 59
1
vote
2 answers

iOS multiplayer game - what to use for the multiplayer part?

I'm developing a game for iOS that should include the multiplayer. It's not a turn-based, rather a real-time game. I know I can use some different approaches here: Game Center multiplayer (has matching and searching for matches, gives…
kender
  • 85,663
  • 26
  • 103
  • 145
1
vote
2 answers

Does anybody know of a program like ScoreLoop or OpenFeint for blackberry phones?

I'm specifically trying to create a global high score list and something like this seems the easiest route. Does anybody know of a service or program for blackberry phones? Thanks!!
Joey John John
  • 243
  • 2
  • 11
1
vote
1 answer

Turn-Based iPhone Game / OpenFeint

I trying to create a turn-based game. And I want to use OpenFeint. I found some info in the OpenFeint documentation, but I can't find any API? Also, can I just create a turn-based game using OpenFeints challenges/push notifications? Thanks for the…
1
vote
2 answers

Get OpenFeint player id on Android

I've integrated OpenFeint into my Android game, and I'm wondering what i need to add in order to get the OpenFeint player id. I want the id or the username so I can allow users to transfer their game accounts between devices, authenticating with…
Andy
  • 1,815
  • 2
  • 22
  • 49
1
vote
2 answers

issue in openfeint when i call setHighScore function

I am integrating openfient SDK in my app. When I want to submit user's score and called a function as below it is giving error 'OFDelegate' was not declared in this scope [OFHighScoreService setHighScore:scores forLeaderboard:@"112033"…
Shivomkara Chaturvedi
  • 1,697
  • 7
  • 28
  • 42
1
vote
0 answers

How to change form data body feign client interceptor

I have some api with content-type: form-data. Every request have some common field in the body Here is my code package com.example.demo.request; import com.fasterxml.jackson.annotation.JsonProperty; import java.math.BigDecimal; public class…