Results: 13Comments by: endymon
File: MageButtons (Classic)01-27-22
As a note to anyone who is interest...
Posted By: endymon
As a note to anyone who is interested. You can get the version hosted on my github and have it installed via the wowup client if you use the following steps: 1) Open Wowup 2) Go to Get Addons tab 3) Install from URL 4) paste the following: https://github.com/matthewhively/MageButtons/releases/tag/v1.05 5) Press import 6) Press...
File: MageButtons (Classic)12-24-21
If anyone has specific issues. Plea...
Posted By: endymon
If anyone has specific issues. Please post them in the github issues tab. I haven't looked here in quite a long time.
File: Theorycraft Classic [Quickfix]11-24-21
I am currently working on a version...
Posted By: endymon
I am currently working on a version for TBC. There is a lot of work left to be done, and only one of me. https://www.curseforge.com/wow/addons/theorycraftclassic2
File: MageButtons (Classic)09-30-21
Re: Re: Re: Re: Re: Re: Lua Error
Posted By: endymon
I tried lasted version from github and it still has same error, unfortunately. All I can say is... DANG. That was my best idea and it seemed to resolve the issue on my end :( Since the issues other mods have been having seem to be related to drop down menus, maybe could try deleting the entire options panel (including the dropd...
File: BankItems Classic09-26-21
Someone hosted an updated version f...
Posted By: endymon
Someone hosted an updated version for TBCC https://github.com/Macumbatbc/BankItem-TBCC
File: MageButtons (Classic)09-25-21
Re: Re: Re: Re: Lua Error
Posted By: endymon
I created a new repo to host this addon. https://github.com/matthewhively/MageButtons I'm not going to worry about license issues. I have backfilled the full version history of this addon starting from version 0.9 all the way up through 1.04 and my own personal changes that seem to have fixed bugs. Anyone who has additional fix...
File: MageButtons (Classic)09-20-21
I believe I have a fix for the tain...
Posted By: endymon
I believe I have a fix for the taint issue. As best as I understand it, looks like there is some bug in the wow core lua that is throwing taint errors. I saw several other mods were disabling something or other (map... dropdowns or something) because of similar issues. While I wasn't able to copy whatever they were doing (since i...
File: MageButtons (Classic)06-22-21
If it's fine with you I could creat...
Posted By: endymon
If it's fine with you I could create a github repo? I've got a more proper fix for the spells not loading, you should wait for the spells to load by watching the SPELL_DATA_LOAD_RESULT event, and once all spells have been loaded continue with the UI setup, that seems to work well for me at least. And it allows us to remove the C_Time...
File: MageButtons (Classic)06-16-21
I believe I fixed the initial loadi...
Posted By: endymon
I believe I fixed the initial loading problem. It was caused by spell information not yet having been downloaded from the server. So now that is forced. Additionally cleaned up an "evil" eval. (so I could actually debug the problem) Add these helper function somewhere (up top makes sense) local function make_spell_table(spe...
File: MageButtons (Classic)06-16-21
Is there a source control repo for...
Posted By: endymon
Is there a source control repo for this addon? github hopefully?
File: BankItems Classic05-21-21
A few more edit are needed ontop of...
Posted By: endymon
A few more edit are needed ontop of phoenixr list of changes. BagButtonAr:SetPoint("TOPLEFT", ItemButtonAr, "BOTTOMLEFT", 0, -33) UPDATE TO BagButtonAr:SetPoint("TOPLEFT", ItemButtonAr, "BOTTOMLEFT", 0, -33) (3 places) = 5, 10 do UPDATE TO = 5, 11 do These are all the additional changes I know of at this time. Wi...
File: MageButtons (Classic)05-21-21
@hobox10 Sorry my fix doesn't work...
Posted By: endymon
@hobox10 Sorry my fix doesn't work for you. I can confirm that is all I changed, though its possible that something might break with a fresh install (or with your configuration). I have also seen it fail to load sometimes. But as mentioned /reload fixes it. Another bug I noticed: /magebuttons lock <<< won't accept the comman...
File: MageButtons (Classic)05-20-21
Found a solution for resetting position
Posted By: endymon
The solution that found for the constantly resetting position was: On line 35 change it to: MageButtonsDB = MageButtonsDB or {} Starting on line 36, Comment out all of this if MageButtonsDB == nil then MageButtonsDB = {} MageButtonsDB = {} MageButtonsDB = {} MageButtonsDB = {} MageButtonsDB = {} MageButtonsDB = {}...