Forum: General Authoring Discussion
04-05-22, 01:35 PM
|
Replies: 5
Views: 959
|
Forum: Lua/XML Help
04-03-22, 04:30 PM
|
Replies: 2
Views: 384
|
Forum: AddOn Search/Requests
03-21-22, 05:22 PM
|
Replies: 1
Views: 370
|
Forum: AddOn Search/Requests
03-14-22, 06:05 PM
|
Replies: 6
Views: 553
"Only loadable on demand" is a Blizzard option...
"Only loadable on demand" is a Blizzard option available to addons that allows the addon to stay unloaded until it's actually needed. For example, DBM utilizes this to keep massive amounts of raid...
|
Forum: AddOn Search/Requests
03-14-22, 04:12 AM
|
Replies: 6
Views: 553
|
Forum: Macro Help
03-13-22, 05:29 PM
|
Replies: 3
Views: 743
|
Forum: Lua/XML Help
03-10-22, 07:15 PM
|
Replies: 2
Views: 560
|
Forum: Lua/XML Help
03-01-22, 09:50 PM
|
Replies: 3
Views: 689
When expiring buffs flash, Blizzard doesn't use...
When expiring buffs flash, Blizzard doesn't use any animation functions, they just change the alpha every frame. Here's the complete math behind it if you want to try matching it with animations or...
|
Forum: Macro Help
02-26-22, 02:49 PM
|
Replies: 2
Views: 1,104
|
Forum: AddOn Help/Support
02-25-22, 11:14 AM
|
Replies: 2
Views: 1,051
|
Forum: Lua/XML Help
02-22-22, 11:00 PM
|
Replies: 10
Views: 896
The only difference between the two IDs is...
The only difference between the two IDs is whether or not the friendship functions return data. A friend is a type of faction. Factions and friends aren't like 1-10 for one then 1-10 for another,...
|
Forum: Lua/XML Help
01-31-22, 05:04 PM
|
Replies: 3
Views: 769
|
Forum: Lua/XML Help
01-22-22, 11:40 PM
|
Replies: 14
Views: 2,493
Oops, missed some frame references to your...
Oops, missed some frame references to your variables that used to be local. Probably could've kept those local. My base goal with those was to put the three letter variables into indexes of the...
|
Forum: Lua/XML Help
01-22-22, 09:10 PM
|
Replies: 14
Views: 2,493
There's an issue with having this code happen...
There's an issue with having this code happen every time you leave combat. You're creating three frames that listen to the same event every time. Eventually, over the course of a play session, you...
|
Forum: Lua/XML Help
01-21-22, 01:10 AM
|
Replies: 14
Views: 2,493
|
Forum: Macro Help
01-09-22, 10:31 AM
|
Replies: 3
Views: 2,676
|
Forum: AddOn Search/Requests
01-08-22, 02:09 PM
|
Replies: 1
Views: 440
|
Forum: Macro Help
01-01-22, 10:44 PM
|
Replies: 8
Views: 1,233
|
Forum: Macro Help
01-01-22, 03:49 PM
|
Replies: 8
Views: 1,233
|
Forum: AddOn Help/Support
12-31-21, 11:35 AM
|
Replies: 3
Views: 863
When viewing a wago page, there is a big...
When viewing a wago page, there is a big orange-red button that says "COPY WEAKAURA IMPORT STRING" but in this case it says TBC-WEAKAURA to warn you it's only for Burning Crusade Classic.
You click...
|
Forum: AddOn Search/Requests
12-30-21, 07:04 PM
|
Replies: 8
Views: 991
|
Forum: Lua/XML Help
12-26-21, 07:30 PM
|
Replies: 6
Views: 1,109
The gsub function accepts three arguments: the...
The gsub function accepts three arguments: the string, what to look for, and what to substitute.
msg=gsub(msg,find,replace)
or
msg=msg:gsub(find,replace)
This means that replace being an empty...
|
Forum: Lua/XML Help
12-25-21, 09:12 PM
|
Replies: 6
Views: 1,109
|
Forum: Lua/XML Help
12-11-21, 03:31 PM
|
Replies: 6
Views: 1,018
|
Forum: Lua/XML Help
11-30-21, 05:05 AM
|
Replies: 1
Views: 823
|