Forum: General Authoring Discussion
Yesterday, 02:54 AM
|
Replies: 12
Views: 330
|
Forum: General Authoring Discussion
01-19-21, 06:22 PM
|
Replies: 12
Views: 330
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: 163
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: 330
|
Forum: General Authoring Discussion
01-19-21, 06:59 AM
|
Replies: 12
Views: 330
|
Forum: General Authoring Discussion
01-19-21, 05:01 AM
|
Replies: 12
Views: 330
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: 163
|
Forum: Lua/XML Help
01-19-21, 04:46 AM
|
Replies: 0
Views: 87
|
Forum: AddOn Help/Support
01-10-21, 06:17 AM
|
Replies: 2
Views: 268
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: 436
Views: 265,658
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,198
|
Forum: Lua/XML Help
12-29-20, 12:49 PM
|
Replies: 4
Views: 1,198
|
Forum: Lua/XML Help
12-29-20, 08:47 AM
|
Replies: 4
Views: 1,198
|
Forum: Site help, bugs, suggestions/questions
12-29-20, 07:49 AM
|
Replies: 2
Views: 531
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: 933
|
Forum: Lua/XML Help
12-29-20, 03:05 AM
|
Replies: 4
Views: 568
|
Forum: Lua/XML Help
12-28-20, 07:55 PM
|
Replies: 3
Views: 463
|
Forum: Lua/XML Help
12-28-20, 06:00 PM
|
Replies: 3
Views: 463
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: 568
|
Forum: Lua/XML Help
12-28-20, 04:40 PM
|
Replies: 4
Views: 568
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,554
|
Forum: Lua/XML Help
12-20-20, 05:41 AM
|
Replies: 2
Views: 1,582
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,554
|
Forum: Lua/XML Help
12-18-20, 11:47 AM
|
Replies: 5
Views: 1,554
|
Forum: Lua/XML Help
12-17-20, 06:55 PM
|
Replies: 5
Views: 1,554
|