Forum: Lua/XML Help
01-02-21, 02:50 PM
|
Replies: 3
Views: 1,165
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,165
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: 12
Views: 4,995
|
Forum: General Authoring Discussion
12-27-20, 07:02 AM
|
Replies: 12
Views: 4,995
|
Forum: General Authoring Discussion
12-06-20, 03:07 PM
|
Replies: 12
Views: 4,995
|
Forum: AddOn Help/Support
10-21-20, 06:39 AM
|
Replies: 3
Views: 2,194
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: 1,819
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: 1,819
|
Forum: AddOn Help/Support
10-20-20, 07:43 AM
|
Replies: 3
Views: 2,194
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: 4,484
|
Forum: Classic - AddOn Help/Support
01-12-20, 10:02 AM
|
Replies: 1
Views: 2,147
|
Forum: Classic - AddOn Help/Support
01-10-20, 08:55 AM
|
Replies: 1
Views: 2,147
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: 1,883
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: 1,883
|
Forum: AddOn Help/Support
11-25-19, 08:48 AM
|
Replies: 3
Views: 1,883
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,280
|
Forum: Classic - AddOn Help/Support
09-15-19, 04:27 PM
|
Replies: 18
Views: 5,266
|
Forum: Classic - AddOn Help/Support
09-15-19, 02:05 PM
|
Replies: 5
Views: 2,280
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,280
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,266
|
Forum: Classic - AddOn Help/Support
09-15-19, 09:03 AM
|
Replies: 5
Views: 2,280
Serious bug in _classic_ GetItemCount
Am I going nuts?
count = GetItemCount(itemID or "itemName" or "itemLink"[, includeBank][, includeCharges])
includeBank
Boolean - true: count includes bank items
In _retail_,...
|
Forum: Lua/XML Help
09-14-19, 04:33 PM
|
Replies: 7
Views: 1,586
|
Forum: Lua/XML Help
09-14-19, 07:48 AM
|
Replies: 7
Views: 1,586
Some of the addon repositories and package...
Some of the addon repositories and package managers provide localization support. I have found that (if you allow it) anonymous (to me) people will actually do the translations for you.
|
Forum: Classic - AddOn Help/Support
09-13-19, 07:27 PM
|
Replies: 18
Views: 5,266
I'm working on the tradeskill addon...
I'm working on the tradeskill addon Skillet-Classic, a port of Skillet from retail, and I find it amazing that I can get the names of tradeskills and I can "DoTradeSkill(name, count)" which triggers...
|
Forum: Classic - AddOn Help/Support
09-13-19, 04:58 PM
|
Replies: 0
Views: 1,437
Event(s) UNIT_SPELLCAST_* documentation
I'm trying to get Skillet-Classic (port of Skillet from retail) to work and when I execute DoTradeSkill(skill,count) I can see from /eventtrace that a series of UNIT_SPELLCAST_* events happen but the...
|