Showing results 1 to 25 of 267
Search took 0.01 seconds.
Search: Posts Made By: Nimhfree
Forum: Lua/XML Help 12-13-21, 08:39 AM
Replies: 3
Views: 1,855
Posted By Nimhfree
I don't know of a way as they seem to be...

I don't know of a way as they seem to be considered in the same realm as dailies. The loadable addon Grail-When just records when you did it (and the count) based on the quest being completed.
Forum: Carbonite: General Discussion 01-24-21, 05:09 PM
Replies: 104
Views: 106,993
Posted By Nimhfree
Software development can be greatly misunderstood.

Software development can be greatly misunderstood.
Forum: Lua/XML Help 01-19-21, 09:07 PM
Replies: 6
Views: 3,675
Posted By Nimhfree
The thing that I have noticed as different...

The thing that I have noticed as different between the startup/ReloadUI in Retail/Classic, is in Retail normal startup there is SPELLS_CHANGED that fires between ADDON_LOADED and PLAYER_LOGIN. There...
Forum: Macro Help 03-19-20, 06:39 AM
Replies: 5
Views: 7,806
Posted By Nimhfree
I have used this technique to move my debuffs...

I have used this technique to move my debuffs over my buffs (which I moved to the bottom of the screen). You could use this as a template for moving them in whatever manner you desired but you will...
Forum: AddOn Search/Requests 03-12-20, 03:23 PM
Replies: 9
Views: 5,822
Posted By Nimhfree
If you are just interested in knowing what quests...

If you are just interested in knowing what quests you have left to do the Wholly quest panel should give you all you want. And you can look at it in wide mode if you prefer seeing lists of zones. ...
Forum: AddOn Search/Requests 03-12-20, 09:35 AM
Replies: 9
Views: 5,822
Posted By Nimhfree
What functionality are you actually looking for...

What functionality are you actually looking for the addon to do?
Forum: Lua/XML Help 12-19-19, 06:58 PM
Replies: 10
Views: 5,010
Posted By Nimhfree
The "key" to understanding this is that in your...

The "key" to understanding this is that in your example, 1 and 2 are not keys. They are indexes. If you want them to be keys they need to be strings like "1" and "2". The table data structure at...
Forum: Classic - AddOn Help/Support 10-13-19, 07:06 PM
Replies: 4
Views: 4,363
Posted By Nimhfree
Sorry about the Grail usage, I just copied...

Sorry about the Grail usage, I just copied sections of the code over.

I did not remember all the different map types there were. I remember Orphan which was insane as Stormsong Valley (in beta at...
Forum: Classic - AddOn Help/Support 10-12-19, 12:02 PM
Replies: 4
Views: 4,363
Posted By Nimhfree
There are all different types of maps in the new...

There are all different types of maps in the new mapping system. You can basically iterate through the continents and get all the type of interest.

Here is code that should work in both Classic and...
Forum: General Authoring Discussion 10-02-19, 09:06 AM
Replies: 3
Views: 4,121
Posted By Nimhfree
You might want to download the addon Grail. It...

You might want to download the addon Grail. It is a quest database and you can use its functions to determine if you can accept a quest based on its ID. You can also find out the reasons why you...
Forum: Lua/XML Help 09-28-19, 08:02 PM
Replies: 12
Views: 10,502
Posted By Nimhfree
Retail also does not have those strings. I wish...

Retail also does not have those strings. I wish both had them as it would make my life easier. The interesting thing is the website with the dump has a field with value 1 which appears to be in use...
Forum: Lua/XML Help 09-28-19, 11:58 AM
Replies: 12
Views: 10,502
Posted By Nimhfree
I just tried in Classic and it appears...

I just tried in Classic and it appears CHARACTER_PROFESSION_ENCHANTING, etc. are all nil.
Forum: Classic - AddOn Help/Support 09-11-19, 06:34 PM
Replies: 5
Views: 5,209
Posted By Nimhfree
I am not sure what you want to use QuestHelper...

I am not sure what you want to use QuestHelper for, but you might want to check out WoW Pro. They should have a Classic version out.
Forum: AddOn Search/Requests 08-31-19, 06:12 PM
Replies: 11
Views: 3,658
Posted By Nimhfree
Instead of using the name of the zone as the key...

Instead of using the name of the zone as the key you can use Blizzard's mapId as the key. You can also ask the Blizzard API for the localized name of that mapId as well so you do not need to keep it...
Forum: AddOn Search/Requests 08-22-19, 06:51 AM
Replies: 2
Views: 2,445
Posted By Nimhfree
The addon WhenLevel should tell you a lot of...

The addon WhenLevel should tell you a lot of that, but not the breakdown of how the experience was earned. It is not yet ready for Classic though.
Forum: AddOn Help/Support 08-02-19, 07:38 PM
Replies: 3
Views: 3,403
Posted By Nimhfree
We map these in game. Basically we see which...

We map these in game. Basically we see which quest was gotten and note the item ID and associate the two.
Forum: Lua/XML Help 07-22-19, 07:57 PM
Replies: 4
Views: 9,560
Posted By Nimhfree
You're lucky...my code however raises an error...

You're lucky...my code however raises an error when I do something like pop through a portal:

-- Move the buffs somewhere...
Forum: AddOn Help/Support 01-20-19, 09:16 AM
Replies: 17
Views: 4,605
Posted By Nimhfree
By the way, the same technique does not seem to...

By the way, the same technique does not seem to work with beta.
Forum: General Authoring Discussion 12-14-18, 09:45 PM
Replies: 4
Views: 2,921
Posted By Nimhfree
The way I detect the "phase" of the map is I...

The way I detect the "phase" of the map is I check for a buff given by Zidormi. If you have the buff you are time traveling back to the old "phase". Note there are a few zones that have Zidormi,...
Forum: Lua/XML Help 11-10-18, 07:03 AM
Replies: 8
Views: 3,901
Posted By Nimhfree
I believe there is no way to access the local...

I believe there is no way to access the local functions from outside, so the only way really would be to reimplement the local functions with your version and then continue to reimplement the callers...
Forum: Lua/XML Help 10-15-18, 08:33 PM
Replies: 21
Views: 7,662
Posted By Nimhfree
You can try from...

You can try from Blizzard_TradeSkillUI.lua:

--[[ Parent categories ]]--
local categories = { C_TradeSkillUI.GetCategories() };

for i, categoryID in ipairs(categories) do
local...
Forum: Lua/XML Help 10-10-18, 06:23 PM
Replies: 21
Views: 7,662
Posted By Nimhfree
I have not converted Grail to using the new...

I have not converted Grail to using the new profession system, but in general you get the professions the user has with:

local prof1, prof2, archaeology, fishing, cooking, firstAid =...
Forum: Lua/XML Help 10-10-18, 06:13 PM
Replies: 21
Views: 7,662
Posted By Nimhfree
Blizzard has the values EXPANSION_NAME0 through...

Blizzard has the values EXPANSION_NAME0 through EXPANSION_NAME7 at the moment.
Forum: PTR UI Bugs 07-26-18, 05:38 PM
Replies: 3
Views: 6,656
Posted By Nimhfree
This happens with my addon, but the cursor need...

This happens with my addon, but the cursor need not be on the world map. I have the cursor over the game menu and I see the addon memory usage climb and then when garbage collection kicks in, go...
Forum: Macro Help 07-25-18, 07:47 PM
Replies: 10
Views: 13,542
Posted By Nimhfree
Perhaps we can continue with the compacting and...

Perhaps we can continue with the compacting and reduce the character count a few more:


/run local p,t=print,{3,4,0,1,2,18,19}p("Title Text")for i=1,#t do...
Showing results 1 to 25 of 267