Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: myrroddin
Forum: Dev Tools 02-12-24, 11:52 PM
Replies: 1
Views: 1,354
Posted By myrroddin
Thank you, Ghost on the WoWUIDev Discord for...

Thank you, Ghost on the WoWUIDev Discord for providing the answer. I had the wrong permissions in the project's Actions settings on GitHub.

Attached are images showing how GitHub should look like.
Forum: Dev Tools 02-12-24, 02:16 PM
Replies: 1
Views: 1,354
Posted By myrroddin
GitHub error I do not understand

I'm using the BigWigs Packager, and after a couple of unforced errors on my part, BetterBags_Hearthstones and BetterBags_Archaeology are getting pushed to Wowinterface, Curseforge, and...
Forum: Site help, bugs, suggestions/questions 02-11-24, 10:26 AM
Replies: 3
Views: 1,211
Posted By myrroddin
Uh oh. I named it incorrectly! Yep, that would do...

Uh oh. I named it incorrectly! Yep, that would do it. :eek:
Forum: Site help, bugs, suggestions/questions 02-11-24, 10:21 AM
Replies: 3
Views: 1,211
Posted By myrroddin
Thank you. I know I added the secret, but it...

Thank you. I know I added the secret, but it appears it did not save correctly. I will verify.
Forum: Site help, bugs, suggestions/questions 02-11-24, 09:53 AM
Replies: 3
Views: 1,211
Posted By myrroddin
New addon isn't updating with GitHub pushed tags

A day or so ago, I created a new addon BetterBags_Hearthstones (https://www.wowinterface.com/downloads/info26689-BetterBags-Hearthstones.html) and uploaded to Wowinterface. Since the 0.01 beta, there...
Forum: AddOn Help/Support 11-27-23, 02:44 AM
Replies: 7
Views: 716
Posted By myrroddin
This won't affect your code, but the game will...

This won't affect your code, but the game will tell you that your addon is outdated unless you update the following line in your .toc file: ## Interface: 10200

The .toc versions for the games are,...
Forum: Lua/XML Help 11-20-23, 10:38 PM
Replies: 4
Views: 610
Posted By myrroddin
You assume people are in a raid, yet you aren't...

You assume people are in a raid, yet you aren't checking for that. Before line 4, you need a check for IsInRaid(). If that returns true, then you can iterate your group members.
Forum: AddOn Help/Support 11-18-23, 04:20 PM
Replies: 1
Views: 540
Posted By myrroddin
Private servers are against the rules,...

Private servers are against the rules, specifically rule #4 here (https://www.wowinterface.com/forums/showthread.php?t=158).
Forum: Lua/XML Help 11-01-23, 11:10 AM
Replies: 3
Views: 738
Posted By myrroddin
Delay registering your PRD and PUD events until...

Delay registering your PRD and PUD events until after either ADDON_LOADED or PLAYER_ENTERING_WORLD. You are likely registering PRD and PUD too early in the loading process. I'd use PEW to be on the...
Forum: Lua/XML Help 11-01-23, 11:05 AM
Replies: 3
Views: 790
Posted By myrroddin
After throwing enough darts blindly, I got it...

After throwing enough darts blindly, I got it working. https://github.com/Myrroddin/smartres2 Now to break it again by adding more options!
Forum: Lua/XML Help 10-30-23, 12:04 PM
Replies: 3
Views: 790
Posted By myrroddin
I have tried every idea that I can think of, and...

I have tried every idea that I can think of, and am still stuck. I am getting the following error, which I cannot decipher.
2x ...nfig-3.0/AceConfigDialog-3.0-86/AceConfigDialog-3.0.lua:1854:...
Forum: Lua/XML Help 10-29-23, 02:07 AM
Replies: 3
Views: 790
Posted By myrroddin
This still doesn't make any sense to me. I see no...

This still doesn't make any sense to me. I see no API to register module options; I do see two to register module defaults. When I try to register the module options, I get the error telling me that...
Forum: Lua/XML Help 10-22-23, 02:04 PM
Replies: 3
Views: 790
Posted By myrroddin
Ace3 - reset a namespace DB to default?

Reading through the docs of AceDB-3.0, I see that namespaces are considered full databases except that they cannot control their options, a parent addon does that. All is well and good, although when...
Forum: Tutorials & Other Helpful Info. 10-15-23, 08:19 PM
Replies: 0
Views: 3,036
Posted By myrroddin
Is there a comprehensive guide to auto-doc addon APIs?

I've spent the better part of a week looking at the BigWigs Packager, GitHub workflows, Ace3 on GitHub, and assorted other Google searches, and come to a singular conclusion: all the existing guides...
Forum: Lua/XML Help 09-25-23, 02:53 AM
Replies: 3
Views: 737
Posted By myrroddin
I solved it, yet even though I solved the issues,...

I solved it, yet even though I solved the issues, I can't explain why this was necessary or what my prior method was doing wrong.
-- Process subzones
if db.watchSubZones then
-- Battlegrounds and...
Forum: Lua/XML Help 09-25-23, 02:01 AM
Replies: 3
Views: 737
Posted By myrroddin
More debugging. watchedFactionID is nil with the...

More debugging. watchedFactionID is nil with the following code, at least for WoD zones and now subzones too, as "Dwarven District" in Stormwind stopped working. It is supposed to be 47 for...
Forum: Lua/XML Help 09-25-23, 12:09 AM
Replies: 3
Views: 737
Posted By myrroddin
Okay, this is bizzare; I was wrong: it isn't WoD...

Okay, this is bizzare; I was wrong: it isn't WoD zones, it is the final check to assign world zone data. No matter if I use:
if type(watchedFactionID) ~= "number" then ...
Or if I use
if not...
Forum: Lua/XML Help 09-24-23, 03:03 PM
Replies: 3
Views: 737
Posted By myrroddin
Code isn't functioning in WoD zones

RepByZone's code should either set the watched faction to the combat ally/bodyguard or Stormwind/Orgrimmar if the player has no bodyguard.

With testing, I know that the variable bodyguardRepID...
Forum: Lua/XML Help 07-14-23, 03:36 AM
Replies: 1
Views: 739
Posted By myrroddin
I figured it out by updating the pre-assigned...

I figured it out by updating the pre-assigned zone and subzone lists, which were using whatever was assigned during initial login, which is probably either nil. I'll clean up the code, but here are...
Forum: Lua/XML Help 07-11-23, 11:56 PM
Replies: 1
Views: 739
Posted By myrroddin
Stumped getting the correct factionID

I am reworking the code chunk in RepByZone that handles getting either Wrathion's or Sabellion's factionID whenever the player's reputation changes. Instead of returning either dragon's factionID,...
Forum: Lua/XML Help 05-26-23, 07:31 PM
Replies: 1
Views: 574
Posted By myrroddin
AceDB does not write variables to disc if they...

AceDB does not write variables to disc if they are unchanged from whatever you defined default is. For example, if you have a variable myaddondb.db.pet = "cat" then AceDB will not write any changes...
Forum: Graphics Help 05-07-23, 06:23 PM
Replies: 0
Views: 4,247
Posted By myrroddin
Contest: Design a logo for RepByZone

RepByZone (Wowinterface (https://www.wowinterface.com/downloads/info25407-RepByZone.html)or Curseforge (https://legacy.curseforge.com/wow/addons/repbyzone)) needs a logo, and I don't know what to...
Forum: General Authoring Discussion 10-12-22, 05:16 PM
Replies: 0
Views: 1,089
Posted By myrroddin
Faction tabards and supported dungeons (Wrath and retail)

I know how to add support via code for the main city faction tabards. What I don't know are the dungeons for both game versions that benefit from the tabards.

Does retail support all dungeons prior...
Forum: AddOn Help/Support 09-26-22, 02:46 AM
Replies: 5
Views: 2,491
Posted By myrroddin
The toggle is disabled by default whenever there...

The toggle is disabled by default whenever there is a game patch, content patch, or expansion. If you enable the toggle or the CVar gets enabled, which you can change as per Dridzt's suggestion, it...
Forum: Lua/XML Help 08-20-22, 11:04 PM
Replies: 15
Views: 3,509
Posted By myrroddin
Thank you. I'll give that a whirl as soon as...

Thank you. I'll give that a whirl as soon as possible.
Showing results 1 to 25 of 500