Forum: AddOn Search/Requests
01-23-21, 03:37 PM
|
Replies: 9
Views: 5,653
|
Forum: AddOn Search/Requests
01-23-21, 09:59 AM
|
Replies: 9
Views: 5,653
|
Forum: Lua/XML Help
12-22-20, 07:01 PM
|
Replies: 8
Views: 2,676
Your answer might be...
Your answer might be here:
https://www.townlong-yak.com/framexml/live/Blizzard_GuildUI/Blizzard_GuildRoster.lua#361
I'm not in a guild, so I have no way to test... but would something like this do...
|
Forum: AddOn Search/Requests
12-21-20, 07:16 PM
|
Replies: 5
Views: 3,521
|
Forum: Lua/XML Help
11-22-20, 11:32 AM
|
Replies: 8
Views: 1,498
|
Forum: AddOn Help/Support
11-08-20, 11:54 AM
|
Replies: 8
Views: 4,633
"The only time you need to consume an xml...
"The only time you need to consume an xml template"
---
It can also be the case if you are interfacing with Blizzard's code that assumes a template. For example, the world map will acquire pins...
|
Forum: Minion
11-08-20, 11:40 AM
|
Replies: 7
Views: 7,975
|
Forum: AddOn Help/Support
11-06-20, 04:00 PM
|
Replies: 8
Views: 4,633
In certain narrow cases, XML is 'mandatory' if...
In certain narrow cases, XML is 'mandatory' if you need to absolutely need to create an XML template. Examples would be pins on the 8.0.1 world map; I don't think that can be done without an XML...
|
Forum: Lua/XML Help
10-29-20, 05:28 PM
|
Replies: 7
Views: 3,510
And I got the WoD map working too. The nodes...
And I got the WoD map working too. The nodes start at "TaxiButton1" and keep increasing from there.
If you don't mind, I might include this in my own addon as well. It seems like a handy feature...
|
Forum: Lua/XML Help
10-29-20, 05:00 PM
|
Replies: 7
Views: 3,510
|
Forum: Lua/XML Help
10-29-20, 04:07 PM
|
Replies: 7
Views: 3,510
I had more time to do some toying around, and...
I had more time to do some toying around, and here's a simple solution. I believe the flight paths are already marked, just invisible and changed to a different icon. They appear briefly when you...
|
Forum: Lua/XML Help
10-29-20, 09:10 AM
|
Replies: 7
Views: 3,510
|
Forum: AddOn Help/Support
10-29-20, 07:17 AM
|
Replies: 6
Views: 3,279
|
Forum: General Authoring Discussion
10-17-20, 10:04 AM
|
Replies: 5
Views: 3,264
|
Forum: AddOn Search/Requests
10-17-20, 09:50 AM
|
Replies: 3
Views: 3,696
|
Forum: AddOn Search/Requests
10-17-20, 09:48 AM
|
Replies: 9
Views: 5,653
|
Forum: General Authoring Discussion
10-17-20, 08:45 AM
|
Replies: 5
Views: 3,264
I've found there's two sources of delay,...
I've found there's two sources of delay, especially in Classic: (a) asynchronously querying the localized spell name; and (b) waiting for the spell book to be available at PLAYER_LOGIN.
I quickly...
|
Forum: AddOn Search/Requests
10-16-20, 08:28 PM
|
Replies: 9
Views: 5,653
I'm sure there's a much more elegant solution,...
I'm sure there's a much more elegant solution, but I came up with this quickly:
/run local f = CreateFrame("Frame") f:RegisterEvent("PLAYER_PVP_TALENT_UPDATE") f:SetScript("OnEvent", function()...
|
Forum: AddOn Search/Requests
10-16-20, 06:19 PM
|
Replies: 2
Views: 2,939
|
Forum: General Authoring Discussion
10-16-20, 06:01 PM
|
Replies: 2
Views: 2,380
|
Forum: Lua/XML Help
10-12-20, 03:02 PM
|
Replies: 15
Views: 5,967
Perhaps try the addon "Recount". It won't...
Perhaps try the addon "Recount". It won't automatically spam the chat as the person dies, but it will track deaths on one of its pages and you can broadcast that to chat.
To build it yourself,...
|
Forum: Lua/XML Help
10-11-20, 10:14 AM
|
Replies: 5
Views: 3,461
|
Forum: AddOn Search/Requests
10-10-20, 10:10 AM
|
Replies: 6
Views: 5,786
When doing work on CT_UnitFrames earlier this...
When doing work on CT_UnitFrames earlier this year, I found one of the biggest performance improvements came from taking old circa Burning Crusade code like this:
RegisterEvent("UNIT_HEALTH")
and...
|
Forum: Lua/XML Help
10-06-20, 08:29 PM
|
Replies: 1
Views: 2,877
I cannot tell if you are asking how to...
I cannot tell if you are asking how to concatenate the text, or to pass a value 'by reference' into a table?
The concatenation operator is ..
"something something something" .. myVar .. "something...
|
Forum: AddOn Help/Support
10-04-20, 08:34 PM
|
Replies: 3
Views: 4,449
|