• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

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

Status
Not open for further replies.
Level 8
Joined
Sep 16, 2016
Messages
227
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:
Status
Not open for further replies.
Top