Forum: AddOn Search/Requests
04-01-21, 03:09 PM
|
Replies: 2
Views: 128
|
Forum: AddOn Search/Requests
04-01-21, 03:31 AM
|
Replies: 2
Views: 128
Warlock Soulstone Reminder
I mostly solo with my Warlock but I'm terrible about keeping a Soulstone on myself. I'm looking for an addon that will monitor the buff and remind me when it is missing. My search has found lots of...
|
Forum: General Authoring Discussion
02-16-21, 03:32 PM
|
Replies: 17
Views: 7,241
Thanks to everyone in this thread especially...
Thanks to everyone in this thread especially myrroddin! I have successfully created new CurseForge projects for Skillet and Skillet-Classic with the repositories on GitHub and packaging via the...
|
Forum: General Authoring Discussion
02-12-21, 10:24 AM
|
Replies: 17
Views: 7,241
|
Forum: General Authoring Discussion
02-11-21, 03:40 PM
|
Replies: 17
Views: 7,241
Things have gone from bad to worse regarding my...
Things have gone from bad to worse regarding my SVN repositories on WowAce. I inherited the Skillet project and managed to fumble through creating the Skillet-Classic project but I have no faith in...
|
Forum: Lua/XML Help
01-02-21, 02:50 PM
|
Replies: 3
Views: 1,991
I finally figured it out, thanks for the...
I finally figured it out, thanks for the hints.
Replace:
local texture = GetItemIcon(itemID)
icon:SetNormalTexture(texture)
with:
icon:SetNormalAtlas(categorySkillRank >=...
|
Forum: Lua/XML Help
12-31-20, 10:25 AM
|
Replies: 3
Views: 1,991
Help with an Icon and SetAtlas
In Skillet, the details frame shows the reagents for a recipe using the following XML template
<Frame name="SkilletItemTemplate" hidden="false" virtual="true">
<Size>
<AbsDimension x="190"...
|
Forum: General Authoring Discussion
12-27-20, 07:05 AM
|
Replies: 17
Views: 7,241
|
Forum: General Authoring Discussion
12-27-20, 07:02 AM
|
Replies: 17
Views: 7,241
|
Forum: General Authoring Discussion
12-06-20, 03:07 PM
|
Replies: 17
Views: 7,241
|
Forum: AddOn Help/Support
10-21-20, 06:39 AM
|
Replies: 3
Views: 2,927
I have attached an updated version of PvPLog...
I have attached an updated version of PvPLog which should display a little better. I started with a version that had a higher version number than the one on WoWRoster and updated it. Added the frame...
|
Forum: AddOn Help/Support
10-21-20, 03:48 AM
|
Replies: 2
Views: 2,468
Thanks for the link. Is it documented anywhere...
Thanks for the link. Is it documented anywhere how to find the Blizzard_APIDocumentation?
I'm the author/maintainer of Skillet (https://www.wowinterface.com/downloads/info7571-Skillet.html#info) and...
|
Forum: AddOn Help/Support
10-20-20, 02:45 PM
|
Replies: 2
Views: 2,468
|
Forum: AddOn Help/Support
10-20-20, 07:43 AM
|
Replies: 3
Views: 2,927
This is a "blast from the past". I was the...
This is a "blast from the past". I was the maintainer of that code long, long ago. Since I just updated Skillet to handle this background change, let me see if I can remember enough of the PvPLog...
|
Forum: General Authoring Discussion
01-14-20, 04:31 PM
|
Replies: 2
Views: 5,441
|
Forum: Classic - AddOn Help/Support
01-12-20, 10:02 AM
|
Replies: 1
Views: 2,694
|
Forum: Classic - AddOn Help/Support
01-10-20, 08:55 AM
|
Replies: 1
Views: 2,694
Help with simple Pet XP bar addon
I found this old addon for a very simple Pet XP bar, modified it for Classic, and everything works except the actual variable length bar that shows the XP progress.
I have attached the addon. It is...
|
Forum: AddOn Help/Support
12-03-19, 05:11 PM
|
Replies: 3
Views: 2,106
In the Skillet case, the function "reserved for...
In the Skillet case, the function "reserved for Blizzard use" is "CastSpellByName" which has become "reserved" because of addon taint. The real issues here are why does the addon get tainted for only...
|
Forum: AddOn Help/Support
11-25-19, 08:59 AM
|
Replies: 3
Views: 2,106
|
Forum: AddOn Help/Support
11-25-19, 08:48 AM
|
Replies: 3
Views: 2,106
Strange addon blocked from an action error
I am the maintainer/author of Skillet and I have a strange error that I can't figure out. If I open and close professions with Spellbook buttons or action bar buttons everything works as expected....
|
Forum: Classic - AddOn Help/Support
09-15-19, 08:37 PM
|
Replies: 5
Views: 2,676
|
Forum: Classic - AddOn Help/Support
09-15-19, 04:27 PM
|
Replies: 18
Views: 5,853
|
Forum: Classic - AddOn Help/Support
09-15-19, 02:05 PM
|
Replies: 5
Views: 2,676
That's weird. I guess I am going nuts!
Did you...
That's weird. I guess I am going nuts!
Did you test with all of itemID or "itemName" or "itemLink"?
and, of course, you did have some of the same item in both your bags and your bank?
In any case,...
|
Forum: Classic - AddOn Help/Support
09-15-19, 01:10 PM
|
Replies: 5
Views: 2,676
I found one but it's ugly...
local bags =...
I found one but it's ugly...
local bags = {0,1,2,3,4}
for _, container in pairs(bags) do
for i = 1, GetContainerNumSlots(container), 1 do
local item = GetContainerItemLink(container,...
|
Forum: Classic - AddOn Help/Support
09-15-19, 11:23 AM
|
Replies: 18
Views: 5,853
|