NewPlayer

Introduction

  • Backend Name: new_player

  • Description: A new player entered the game

  • Event Type: Game

  • Priority: P5

Parameters

NameTypeSelectBackend nameDescription
additionalDataDictionaryOptionaladditional_dataAny additional information

Code example

Dictionary<string, object> additionalData = new Dictionary<string, object>
{       
    { "Round", 12 },
    { "Health", 9 },
    { "Total Coins", 100 }
};
LionAnalytics.NewPlayer(additionalData);