"BingoMega" Half-Screen Event Description

Used in live broadcast apps to request period results, player betting information, win/loss results, and follow-up betting operations. It facilitates user interaction within the app.

1、Players' betting results notification

The platform is used to obtain the betting information of each player, and then synchronize it to the APPli, such as synchronizing it to the live broadcast room.

Step: op:"Bet",

data parameter description

Name
Type
Description

gameId

number

Game ID

name

string

Merchant Player Name

id

string

Merchant Player ID

betType

number

Betting type: 1:Graphic mode, 2:Jackpot, 3:Combo mode

ball

number[]

25 number balls to bet on

currency

string

Currency name (USDT, etc., see the currency list for details)

Example

{
	action: 'sendData', 
	data:{
		op:"Bet",
		data:[
			{
				gameId:number,                  //Game ID
				name:"hhsayy22"			//Merchant Player Name
				id:"12132111313",		//Merchant player idid
				// Betting List
				bets:{
					betType: 0,		//Bet Type
					ball:  [8,22,34,57,66,7,21,45,52,69,4,27,0,51,68,12,30,41,59,72,3,24,36,50,70], //25 number balls to bet on
					currency:"usdt",	//Currency name (USDT, etc., see the currency list for details)
				} 
			}
		 ]
	}
}

2、Lottery result notification

Lottery result notification

Steps: op:"ShowRound",

data parameter description

Name
Type
Description

roundId

number

Issue

nums

number[]

Numerical results display

Example

{
	action: 'sendData', 
	data: {
		op:"Bet",
		data:{
			roundId:202504090002,		//Issue
			nums:[1,3,5,2,6,9]		//Numerical results display
		} 
	}
}

3、Winning player winning amount notification

Used to synchronize winning amount of players in the live broadcast room

Step: op:"Reward",

data parameter description

Name
Type
Description

id

string

Merchant Player ID

name

string

Merchant Player Name

currency

string

Currency name (USDT, etc., see the currency list for details)

money

number

The player's winning amount

Example

{
	action: 'sendData', 
	data: {
		op:"Bet",
		data:{
			id:"12132111313",		//Merchant Player ID
			name:"hhsayy22"			//Merchant Player Name
			currency:"usdt,			//Currency name (USDT, etc., see the currency list for details))
			money:0.05			//The player's winning amount
		} 
	}
}

4、Player follow-up investment request

Refer to the demo code:

// Follow-up investment
const FollowUpInvestment = () => {
    if(!postData.data.data){
        return;
    }
    iframe.contentWindow.postMessage(JSON.stringify(postData), '*');
}

Steps: op: "Follow",

data parameter description

Name
Type
Description

betType

number

Betting type: 1:Graphic mode, 2:Jackpot, 3:Combo mode

ball

number[]

25 number balls to bet on

currency

string

Currency name (USDT, etc., see the currency list for details)

Example

{
	action: 'sendData', 
	data:{
		op:"Follow",
		data:[
			{
				betType: 0,		//Betting type
				ball:  [8,22,34,57,66,7,21,45,52,69,4,27,0,51,68,12,30,41,59,72,3,24,36,50,70], //25 number balls to bet on
				currency:"usdt",	//Currency name (USDT, etc., see the currency list for details)
			}
		 ]
	}
}

Step 1 of forwarding the player's betting information: just the betting information of op: "Bet".

Last updated