• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Dynamic Tooltip] My Tooltip updates, but extendedtooltip doesn't, is it a bug? [Solved]

Level 7
Joined
Sep 16, 2016
Messages
185
1705750073340.png

How it looks ingame, with this code:

JASS:
        abil_Q = 'A11T'
        abil_lvl = GetLearnedSkillLevel()
        BlzSetAbilityTooltip(abil_Q, "Spell Title ["+abil_lvl.toString()+"]", abil_lvl-1)
        BlzSetAbilityExtendedTooltip(abil_Q, "Spell Desc ["+abil_lvl.toString()+"]", abil_lvl-1)

I really have no idea why the description is not matching, is it not indexed like 0, 1, 2, 3, 4? I did try 1, 2, 3, 4, 5 too, but same result.
 
Last edited:
Top