Dota 2
DOTA AUTO CHESS
closurei 1 Dec, 2024 @ 12:27pm
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.
< >
Showing 1-2 of 2 comments
Tigaron 1 Dec, 2024 @ 6:41pm 
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 1 Dec, 2024 @ 11:03pm 
Originally posted by 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!
< >
Showing 1-2 of 2 comments
Per page: 1530 50