Dota 2
刀塔自走棋
closurei 2024 年 12 月 1 日 下午 12:27
How Flourish Talent Work??
My courier was level 7, and I picked this Level 35 Talent and I thought I would turn my courier level to 10? What is this talent anyway? Or am I misinterpret it? Please help, thanks.
< >
正在显示第 1 - 2 条,共 2 条留言
Tigaron 2024 年 12 月 1 日 下午 6:41 
i checked the source code and i think the talent is meant for leveling above lv 10

so without the talent, courier will stop gaining exp at the start of the round when it's already level 10

with the talent, courier can gain exp at the start of the round until lv 16


this is what i found from the source code
local level_max = 10 if caster:HasModifier('modifier_talent_4b_morepieces') then level_max = 16 end if keys.ignore_level_restrict then caster:AddExperience(xpadd,0,false,false) elseif caster:GetLevel() < level_max then -- 超过最大等级时去掉经验值零头 if xpadd + xpnow > _G.HeroExpTable[level_max] then xpadd = _G.HeroExpTable[level_max] - xpnow end if xpadd < 0 then xpadd = 0 end caster:AddExperience(xpadd,0,false,false) end
closurei 2024 年 12 月 1 日 下午 11:03 
引用自 Tigaron
i checked the source code and i think the talent is meant for leveling above lv 10

so without the talent, courier will stop gaining exp at the start of the round when it's already level 10

with the talent, courier can gain exp at the start of the round until lv 16


this is what i found from the source code

Thank you so much. I will check it again if that how it works!
< >
正在显示第 1 - 2 条,共 2 条留言
每页显示数: 1530 50