[DiscordArchive] in 3.3.5 ?
[DiscordArchive] in 3.3.5 ?
Archived author: Intemporel • Posted: 2021-07-15T18:09:33.895000+00:00
Original source
in 3.3.5 ?
Archived author: Browller • Posted: 2021-07-15T18:15:42.410000+00:00
Original source
yeah
Archived author: Browller • Posted: 2021-07-15T18:16:10.935000+00:00
Original source
i've looked all single FrameXML lua/xml files and didn't find anything related to it :/
Archived author: Intemporel • Posted: 2021-07-15T18:18:03.523000+00:00
Original source
wait a min
Archived author: Intemporel • Posted: 2021-07-15T18:27:32.998000+00:00
Original source
you can add a line like that :
```lua
local lineAdded = false
local function OnTooltipSetItem(tooltip, ...)
if not lineAdded then
tooltip:AddLine("Hello World!")
lineAdded = true
end
end
local function OnTooltipCleared(tooltip, ...)
lineAdded = false
end
GameTooltip:HookScript("OnTooltipSetItem", OnTooltipSetItem)
GameTooltip:HookScript("OnTooltipCleared", OnTooltipCleared)
```
but i think you can't move something in this tooltip
Archived author: Intemporel • Posted: 2021-07-15T18:28:09.575000+00:00
Original source
whell i thing it's in client memory