小赌注旁观者:只允许一场锦标赛+更新锦标赛名称

时间:2014-02-20 16:31:15

标签: objective-c nextpeer small-bet

我在游戏中使用small-bet-nextpeer SDK进行真钱挑战。它显示了多个锦标赛,如何避免多重锦标赛并为其添加名称?

这是我的Small-Bet初始化代码:

    [Nextpeer setSmallBetSandboxKey:SMALL_BET_SANDBOX_KEY andProductionKey:SMALL_BET_PRODUCTION_KEY];

    [Nextpeer initializeWithProductKey:NEXT_PEER_GAME_KEY
                          andDelegates:[NPDelegatesContainer containerWithNextpeerDelegate:self notificationDelegate:self tournamentDelegate:self]];

这是截图: enter image description here

2 个答案:

答案 0 :(得分:1)

得到解决方案。

为避免多场锦标赛,需要签入代码:

-(BOOL)nextpeerSupportsTournamentWithId:(NSString* )tournamentUuid
{
    if([tournamentUuid isEqualToString:@"NPA23903563215268043"])
        return YES;
    else
        return NO;
}

我们可以在nextPer网站上编辑锦标赛冠军,而不是小赌注。

答案 1 :(得分:1)

我写了SBNPSDK框架。

您有两种选择:

  1. 从下一个网站删除备用锦标赛。

  2. 按照Guru的建议实施-(BOOL)nextpeerSupportsTournamentWithId:(NSString* )tournamentUuid。此方法仅用于从主界面过滤接下来的比赛,它永远不会询问所有tournamentUuidSB开头的小型投注锦标赛。