# Talent Tree Clear Tier

FlagsNative | Action

# Arguments

  • int — Player
  • int — Tier

Returns — void

native void TalentTreeClearTier(int inPlayer, int inTier);

Category: Talent Tree / Basic

# Examples

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/GameLib.galaxy:11744

    lv_itChoice = 1;
    for ( ; ( (auto1D22FFB2_ai >= 0 && lv_itChoice <= auto1D22FFB2_ae) || (auto1D22FFB2_ai < 0 && lv_itChoice >= auto1D22FFB2_ae) ) ; lv_itChoice += auto1D22FFB2_ai ) {
        TalentTreeClearTier(lp_player, lv_itChoice);
        libGame_gv_talents_TalentChoices[lp_player][lv_itChoice].lv_selection = 0;
    }

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/SupportLib.galaxy:1818

        }
    }
    TalentTreeClearTier(lp_player, lp_tier);
    libGame_gv_talents_TalentChoices[lp_player][lp_tier].lv_selection = 0;
    libGame_gf_TalentsUpdateChoicePanelForPlayer(lp_player);