• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Arena Daemon multiplayer integration (iOS + Android)

aragon81

Lurker
hi everyone, i m trying to use arenadaemon sdk (www.arenadaemon.com) to build a multiplayer game for iOS. i successfully retrieve the tables list and also the registration goes fine
but i cannot understand when a match starts.

how can i hook that event?
thank you!
 
If you want to create a match with 2 or more players, you need each player register to the same table.
when the table is full (no seats left) the match automatically starts and each player receive the event (for iOS)

iOS : - (void) arenaPlay:(BDArenaPlayConnector*)connector matchDidStart:(BDArenaMatchData*)matchData;
Android : public void arenaPlayMatchDidStart(BDArenaPlayConnector connector, BDArenaMatchData matchInfo)

so, once a match starts, you can exchange messages between player calling the methods you can find under ‘Managing matches’ paragraph of the documentation
(http://arenadaemon.com/references/detail/33 | http://arenadaemon.com/references/detail/8)
 
Last edited:
Back
Top Bottom