PowerUpUsed

Introduction

  • Backend Name: powerup_used

  • Description: The player used a power up or boost.

  • Event Type: Game

  • Priority: P1

Parameters

NameTypeSelectBackend nameDescription
additionalDataDictionaryOptionaladditional_dataAny additional information
missionAttemptintRequiredmission_attemptNumber of times user has played Game Level N (second play of Game Level N = 2)
missionIDstringRequiredmission_idThe unique ID for the mission.
missionTypestringOptionalmission_typeIndicate the type of the mission, level, task, quests etc.
powerUpNamestringRequiredpower_up_nameThe name of the power up.
missionIDstringOptionalmission_id

Code example:

Dictionary<string, object> additionalData = new Dictionary<string, object>
{
    { "PowerUpRemaining", "25" },
    { "Multiplier", "X2.5" }
};
LionAnalytics.PowerUpUsed("Mission_12", "ClimbTree", 8, "JumpDash", additionalData);