Showing results 1 to 25 of 45
Search took 0.00 seconds.
Search: Posts Made By: kernighan
Forum: Classic - AddOn Help/Support 09-23-19, 05:36 PM
Replies: 4
Views: 4,702
Posted By kernighan
Thanks, I'll see if I can figure something out...

Thanks, I'll see if I can figure something out from that.
Forum: Classic - AddOn Help/Support 09-23-19, 10:42 AM
Replies: 4
Views: 4,702
Posted By kernighan
Ability to write text on the world map

In the past, it was possible to write text on the world map. I used this to provide zone level information (back in the days before Blizzard added this info). However, that information is once...
Forum: Classic - AddOn Help/Support 09-16-19, 06:12 PM
Replies: 7
Views: 6,896
Posted By kernighan
I was apparently using the wrong gametooltip...

I was apparently using the wrong gametooltip bits, which I fixed and should now fix those errors. Fingers crossed.
Forum: Classic - AddOn Help/Support 09-16-19, 10:11 AM
Replies: 18
Views: 11,196
Posted By kernighan
Have you seen the issue where doing these calls...

Have you seen the issue where doing these calls makes profession windows open? Like I see it with Tailoring and Blacksmithing on the trade skills side, and with Enchanting on the crafting skill side.
Forum: Classic - AddOn Help/Support 09-16-19, 09:35 AM
Replies: 18
Views: 11,196
Posted By kernighan
See the issue I filed here:...

See the issue I filed here: https://www.wowace.com/projects/skillet-classic/issues/16
Forum: Classic - AddOn Help/Support 09-15-19, 10:50 AM
Replies: 18
Views: 11,196
Posted By kernighan
So I noticed Skillet isn't working with...

So I noticed Skillet isn't working with Enchanting. I was having the same problem. I found through some digging that Enchanting has been reverted to the old "Craft" API. I've updated my itemID...
Forum: Classic - AddOn Help/Support 09-14-19, 09:10 AM
Replies: 18
Views: 11,196
Posted By kernighan
I ended up indexing on itemID for i = 1,...

I ended up indexing on itemID


for i = 1, GetNumTradeSkills() do
local recipe, hdr = GetTradeSkillInfo(i)
if (recipe and hdr ~= "header") then
local itemLink =...
Forum: Classic - AddOn Help/Support 09-12-19, 05:53 PM
Replies: 0
Views: 3,676
Posted By kernighan
Using ToggleGuildFrame() inside an addon

I have a guild related addon, and for some reason, ToggleGuildFrame() doesn't do anything when executed inside of it, but if I execute ToggleGuildFrame() via a macro, it opens up the social tab...
Forum: Classic - AddOn Help/Support 09-12-19, 04:01 PM
Replies: 7
Views: 6,896
Posted By kernighan
Actually that appears to be slightly different,...

Actually that appears to be slightly different, although perhaps related?
Forum: Classic - AddOn Help/Support 09-12-19, 03:53 PM
Replies: 7
Views: 6,896
Posted By kernighan
Yeah, the ElvUI guys seem to think this is a...

Yeah, the ElvUI guys seem to think this is a Blizzard bug as well: https://git.tukui.org/elvui/elvui/issues/1402

In the last comment, you can see where they've identified the bug in Blizzard's code....
Forum: Classic - AddOn Help/Support 09-12-19, 03:45 PM
Replies: 7
Views: 6,896
Posted By kernighan
This is coming from the GameTooltipTemplate...

This is coming from the GameTooltipTemplate frame, API is here (https://github.com/Gethe/wow-ui-source/blob/classic/FrameXML/GameTooltip.lua). Not sure why it's causing errors when my code in no way...
Forum: Classic - AddOn Help/Support 09-12-19, 03:41 PM
Replies: 7
Views: 6,896
Posted By kernighan
I pulled up the original Vanilla version of the...

I pulled up the original Vanilla version of the mod, and it used WorldMapFrame, and that seems to work fine. ;)
Forum: AddOn Help/Support 09-11-19, 03:23 PM
Replies: 3
Views: 1,940
Posted By kernighan
Do you know of any example code for that? ;)

Do you know of any example code for that? ;)
Forum: AddOn Help/Support 09-11-19, 01:49 PM
Replies: 3
Views: 1,940
Posted By kernighan
Singular map files

At some point, Blizzard broke the maps for zones into multiple pieces, forever breaking one of my addons. Does anyone know an easy way to assemble the map files into a single coherent file?

For...
Forum: Classic - AddOn Help/Support 09-11-19, 12:22 PM
Replies: 7
Views: 6,896
Posted By kernighan
WorldFrame issues in Classic

For one of my addons, users are reporting they see the following (although I never see this reported):



I'm not really sure what to do about this one at all.



This is maybe related to what's...
Forum: Classic - AddOn Help/Support 09-11-19, 11:48 AM
Replies: 5
Views: 5,307
Posted By kernighan
Lightheaded is available for Classic now Questie...

Lightheaded is available for Classic now
Questie (I know you said don't mention it, but... it's available). ;)
QuestGuru is working on a classic version
MonkeyQuest is available as well

All great...
Forum: Classic - AddOn Help/Support 09-10-19, 08:10 AM
Replies: 18
Views: 11,196
Posted By kernighan
Yeah, that's what I've done so far for my addon...

Yeah, that's what I've done so far for my addon (build a table by hand). Which really ... sucks. :) But it "works" :P Maybe we should all band together and create a common library for this...
Forum: Classic - AddOn Help/Support 09-08-19, 02:48 AM
Replies: 18
Views: 11,196
Posted By kernighan
There are recipes that exist in Classic that...

There are recipes that exist in Classic that don't exist in later wow releases, such as the First Aid, Cooking, and Fishing books necessary to get from level 150 to 225. Also the mageweave bandages...
Forum: Classic - AddOn Help/Support 09-07-19, 08:21 PM
Replies: 18
Views: 11,196
Posted By kernighan
Well, I figured a way to get it converted to the...

Well, I figured a way to get it converted to the itemID using GetTradeSkillItemLink which still exists, which I can then use my internal DB to map to the spellID, I believe. So I think I have a...
Forum: Classic - AddOn Help/Support 09-07-19, 06:50 PM
Replies: 18
Views: 11,196
Posted By kernighan
a) LibRecipes does not appear to have a version...

a) LibRecipes does not appear to have a version for Classic, so it's out.

b) Its API takes an ID. An ID I don't have, because the entire point of this post is me asking how do I take the TEXTUAL...
Forum: Classic - AddOn Help/Support 09-07-19, 05:12 PM
Replies: 18
Views: 11,196
Posted By kernighan
Foiled again, as that API doesn't exist in...

Foiled again, as that API doesn't exist in Classic... so back to the original question. How in the world do I map known recipes to an ID?
Forum: Classic - AddOn Help/Support 09-07-19, 11:08 AM
Replies: 18
Views: 11,196
Posted By kernighan
I think I found a different way to do what I...

I think I found a different way to do what I need, using the new C_TradeSkillUI.GetAllRecipeIDs() function. Will test.
Forum: Classic - AddOn Help/Support 09-06-19, 11:48 PM
Replies: 18
Views: 11,196
Posted By kernighan
I tried using GetItemInfo and parsing the...

I tried using GetItemInfo and parsing the itemLink, but it doesn't work for everything. For example, it works for "Murlock Fin Soup" but not for "Clam Chowder" :/ There's no itemLink returned in...
Forum: Classic - AddOn Help/Support 09-06-19, 09:03 PM
Replies: 18
Views: 11,196
Posted By kernighan
[Classic] Convert recipe item name to spellID

In BfA, you can do the following with a crafting recipe spell name, and get the related spellID:


local spellLink = GetSpellLink(spellName);
if spellLink then
return...
Forum: AddOn Help/Support 09-03-19, 07:38 AM
Replies: 4
Views: 2,371
Posted By kernighan
great, thanks!

great, thanks!
Showing results 1 to 25 of 45