Forum: AddOn Help/Support
01-11-21, 10:29 AM
|
Replies: 2
Views: 231
|
Forum: AddOn Search/Requests
01-09-21, 04:55 AM
|
Replies: 4
Views: 446
|
Forum: Lua/XML Help
01-08-21, 05:19 PM
|
Replies: 2
Views: 267
Take a look at...
Take a look at https://wow.gamepedia.com/API_AuraUtil.FindAuraByName
local name = AuraUtil.FindAuraByName("Shadowcore Oil", 'player')
if(name) then
print("Buff found.")
end
and
for i = 1,...
|
Forum: Lua/XML Help
12-29-20, 10:55 AM
|
Replies: 5
Views: 1,006
|
Forum: Lua/XML Help
12-13-20, 11:21 AM
|
Replies: 4
Views: 1,121
|
Forum: News
12-01-20, 07:13 AM
|
Replies: 2
Views: 15,856
|
Forum: Lua/XML Help
10-31-20, 01:52 AM
|
Replies: 4
Views: 2,743
|
Forum: General Authoring Discussion
10-17-20, 06:33 AM
|
Replies: 5
Views: 2,639
You might try to use the spellid instead of the...
You might try to use the spellid instead of the name.
https://wow.gamepedia.com/API_GetSpellInfo
"Using spellName or spellLink only returns the info if the spell is in your spellbook; otherwise it...
|
Forum: Lua/XML Help
10-16-20, 10:45 AM
|
Replies: 4
Views: 2,363
Take a look at this post...
Take a look at this post https://www.wowinterface.com/forums/showpost.php?p=336518&postcount=19 might help you.
|
Forum: Lua/XML Help
10-16-20, 07:41 AM
|
Replies: 1
Views: 1,752
|
Forum: Lua/XML Help
10-11-20, 01:01 PM
|
Replies: 4
Views: 3,017
|
Forum: General Authoring Discussion
10-06-20, 11:05 AM
|
Replies: 6
Views: 3,187
|
Forum: General Authoring Discussion
10-06-20, 04:01 AM
|
Replies: 6
Views: 3,187
|
Forum: General Authoring Discussion
10-06-20, 03:23 AM
|
Replies: 6
Views: 3,187
|
Forum: Lua/XML Help
10-05-20, 05:01 AM
|
Replies: 0
Views: 1,959
|
Forum: Lua/XML Help
10-04-20, 11:46 AM
|
Replies: 1
Views: 2,322
Take a look here...
Take a look here https://www.wowinterface.com/forums/showthread.php?t=46671
There are a few traps. The file might not be found ? (Restart of WoW required, Reload is not enough)
|
Forum: Lua/XML Help
09-27-20, 06:12 AM
|
Replies: 5
Views: 2,878
You might take a look at...
You might take a look at https://www.townlong-yak.com/framexml/live/AddonList.lua#478
function AddonList_HasOutOfDate()
local hasOutOfDate = false;
for i=1, GetNumAddOns() do
local name, title,...
|
Forum: Macro Help
09-01-20, 03:20 AM
|
Replies: 6
Views: 16,037
|
Forum: PTR API and Graphics Changes
08-29-20, 02:05 PM
|
Replies: 14
Views: 18,729
|
Forum: AddOn Help/Support
08-25-20, 05:58 AM
|
Replies: 4
Views: 3,155
Google shows this bugreport...
Google shows this bugreport https://www.curseforge.com/wow/addons/bitten-common/issues/565
Perhaps this is your addon?
Other than that: Disable all addons. Enable one by one until you find your...
|
Forum: PTR API and Graphics Changes
08-17-20, 07:56 AM
|
Replies: 39
Views: 30,892
|
Forum: Site help, bugs, suggestions/questions
08-12-20, 02:09 AM
|
Replies: 4
Views: 13,918
|
Forum: Lua/XML Help
08-09-20, 06:45 AM
|
Replies: 13
Views: 4,885
|
Forum: Lua/XML Help
08-09-20, 06:11 AM
|
Replies: 13
Views: 4,885
Keep in mind that some changes cant be made in...
Keep in mind that some changes cant be made in combat. That means the change has to be made before you receive the combat event. So when you reload in a combat situation your script might fail...
|
Forum: Lua/XML Help
08-09-20, 03:54 AM
|
Replies: 13
Views: 4,885
I dont use Pitbull but I see that it has a...
I dont use Pitbull but I see that it has a modular setup.
Looking at the code I'd guess it is created on startup. But only when the group is enabled (dont know what that means in this context).
In...
|