CharacterUpdated

Introduction

  • Backend Name: character_updated

  • Description: The player updated a characters information.

  • Event Type: Game

  • Priority: P3

Parameters

NameTypeSelectBackend nameDescription
additionalDataDictionaryOptionaladditional_dataAny additional information
characterClassstringRequiredcharacter_classClass of the character being created.
characterIDstringRequiredcharacter_idThe ID of the character.
characterNamestringRequiredcharacter_nameThe name of the character

Code example:

Dictionary<string, object> additionalData = new Dictionary<string, object>
{
    { "Experience", 1356 },
    { "Health", 76.85f },
    { "Total Money", 56897.56f }
};
LionAnalytics.CharacterUpdated("Legendary", "L_Pack_01_CH_12", "MainGuy", additionalData);