HandAction

This event is a poker specific event used to track the betting rounds within a hand of poker.

Name
Type
Select
Backend name
Description

amount

int

Required

amount

The amount the player BET / RAISED if applicable.

gameID

string

Required

game_id

The unique ID for the game, this ID links the multiplayer session so each player in the game has the same ID.

handID

string

Required

hand_id

The unique ID for the specific hand of poker in the game.

roundAction

string

Required

round_action

The action a player took in the round.

roundName

string

Required

round_name

The name of the betting round e.g. PREFLOP/FLOP/TURN/RIVER…

additionalData

Dictionary<string, object>

Optional

additional_data

Any additional information

Code examples:

LionAnalytics.HandAction(2500, "Poker_Test_01", "15_J_K", "Shuffle", "TURN");

Last updated