Forum: Lua/XML Help
02-09-21, 05:41 PM
|
Replies: 2
Views: 244
|
Forum: Lua/XML Help
02-09-21, 05:03 PM
|
Replies: 2
Views: 244
GetIgnoreParentAlpha() ??
There is SetIgnoreParentAlpha() (https://wow.gamepedia.com/API_Region_SetIgnoreParentAlpha), but is there a way to check whether a region is currently ignoring its parent alpha or not? Or do I have...
|
Forum: General Authoring Discussion
01-20-21, 02:54 AM
|
Replies: 12
Views: 975
|
Forum: General Authoring Discussion
01-19-21, 06:22 PM
|
Replies: 12
Views: 975
I'm not sure, if this works:
function...
I'm not sure, if this works:
function EZTest_Config.DismountCheck.setFunc(state)
EZTestData.Config_Dismount = state
lib.ApplyLayout()
end
Try this and put a print in there to see if anything is...
|
Forum: Classic - AddOn Help/Support
01-19-21, 06:16 PM
|
Replies: 5
Views: 572
Instead of
local...
Instead of
local BlizzardGameTooltipOnUpdateRetention = GameTooltip.OnUpdate
you would have to do
local BlizzardGameTooltipOnUpdateRetention = GameTooltip:GetScript("OnUpdate")
But what you are...
|
Forum: General Authoring Discussion
01-19-21, 02:59 PM
|
Replies: 12
Views: 975
|
Forum: General Authoring Discussion
01-19-21, 06:59 AM
|
Replies: 12
Views: 975
|
Forum: General Authoring Discussion
01-19-21, 05:01 AM
|
Replies: 12
Views: 975
Hello and welcome!
Could you wrap your code in...
Hello and welcome!
Could you wrap your code in the [ CODE ] or [ highlight="Lua"] tags? (The Buttons above your advanced editing text box.) This makes reading much easier.
Also, I have not fully...
|
Forum: Classic - AddOn Help/Support
01-19-21, 04:51 AM
|
Replies: 5
Views: 572
|
Forum: Lua/XML Help
01-19-21, 04:46 AM
|
Replies: 0
Views: 358
|
Forum: AddOn Help/Support
01-10-21, 06:17 AM
|
Replies: 2
Views: 618
GetXPExhaustion...
GetXPExhaustion (https://wow.gamepedia.com/API_GetXPExhaustion) returns nil when you are not rested. So instead of
if restedxp == 0
you have to do
if restedxp == nil
or just
|
Forum: Released AddOns
01-07-21, 02:10 PM
|
Replies: 450
Views: 279,159
I am wondering how we should handle SL flight...
I am wondering how we should handle SL flight data. Because the flight time through the "worm hole" when traveling between covenant regions and oribos now actually depends on how fast your hard drive...
|
Forum: Lua/XML Help
12-29-20, 06:43 PM
|
Replies: 4
Views: 1,992
|
Forum: Lua/XML Help
12-29-20, 12:49 PM
|
Replies: 4
Views: 1,992
|
Forum: Lua/XML Help
12-29-20, 08:47 AM
|
Replies: 4
Views: 1,992
|
Forum: Site help, bugs, suggestions/questions
12-29-20, 07:49 AM
|
Replies: 2
Views: 1,010
Author Interface List broken?
This is not a big thing.
But when I look at this page
https://www.wowinterface.com/portal.php?id=1228&a=list
almost all of my addons are marked as "popular".
However,...
|
Forum: Lua/XML Help
12-29-20, 07:39 AM
|
Replies: 1
Views: 1,537
|
Forum: Lua/XML Help
12-29-20, 03:05 AM
|
Replies: 4
Views: 1,060
|
Forum: Lua/XML Help
12-28-20, 07:55 PM
|
Replies: 3
Views: 938
|
Forum: Lua/XML Help
12-28-20, 06:00 PM
|
Replies: 3
Views: 938
AceConfig-3.0 Options: How to pass imageCoords?
In AceConfig-3.0 Options (https://www.wowace.com/projects/ace3/pages/ace-config-3-0-options-tables) you can set an image to be displayed instead of an execute button.
But I don't understand how you...
|
Forum: Lua/XML Help
12-28-20, 05:30 PM
|
Replies: 4
Views: 1,060
|
Forum: Lua/XML Help
12-28-20, 04:40 PM
|
Replies: 4
Views: 1,060
Use atlas name in string?
Looking at the global strings (https://www.townlong-yak.com/framexml/live/GlobalStrings.lua) I have figured out that you can use textures in strings like...
|
Forum: Lua/XML Help
12-23-20, 03:58 AM
|
Replies: 5
Views: 1,968
|
Forum: Lua/XML Help
12-20-20, 05:41 AM
|
Replies: 2
Views: 2,035
That's really strange. It makes you wonder what...
That's really strange. It makes you wonder what IsUsableSpell() is good for regarding pet abilities.
A workaround could be this:
local _, id = GetSpellBookItemName(14, BOOKTYPE_PET)
if id == 264735...
|
Forum: Lua/XML Help
12-19-20, 12:03 PM
|
Replies: 5
Views: 1,968
|