gashole
Player-
Content count
33 -
Joined
-
Last visited
Everything posted by gashole
-
Try unchecking the "Show Target Damage" box in Interface Options under the Advanced Options tab. This fixes the problem on my end.
-
@Rafale do you play a Paladin? Seals seem to be the problem. The Mac client throws Assertion errors after attacking with a Seal ability.
-
You can easily install and update most GitHub hosted AddOns using the GitHub Desktop client. https://desktop.github.com/ To install an AddOn, clone the AddOn repository into your Interface/AddOns/ folder. https://help.github.com/desktop/guides/contributing/cloning-a-repository-from-github-to-github-desktop/ To update an AddOn, in the upper-right corner of the client, click Sync.
-
ManaBarColor is a global table to get the color for mana, rage, energy, etc. One of your AddOns could be changing it. Paste the code into modui/globals/colour.lua and turn off all AddOns except for modui. Figure out which AddOn is causing the problem.
-
Here, try this. ManaBarColor[0].r = 0.50 ManaBarColor[0].g = 0.50 ManaBarColor[0].b = 1.00
-
Copy/paste this into a new or existing AddOn's .lua file and change the values. ManaBarColor[0].r = 0.00 ManaBarColor[0].g = 0.00 ManaBarColor[0].b = 1.00
-
Fixed
-
Remove "-master" from the folder name when installing without Git.
-
[AddOn] TimeManager (alarm clock, stopwatch, local time)
gashole posted a topic in UI, AddOns & Macros
TimeManager (Blizzard_TimeManager) Time Management features from patch 2.4.3+. These features include an alarm clock, stopwatch, and viewing your computer's local time. Slash commands /stopwatch - Toggles the stopwatch /stopwatch time - Toggles the stopwatch to count down from the given time. Format: [[H:]M:]S /stopwatch clear - Stops the timer and resets to 0 /stopwatch pause - Pauses the timer /stopwatch reset - Stops the timer and resets to 0 /stopwatch stop - Stops the timer and resets to 0 /stopwatch close - Closes the timer's window More information: http://wowwiki.wikia.com/wiki/MACRO_stopwatch Install 1. Download TimeManager 2. Extract the zip to an easy to find location such as your Desktop 3. Move the TimeManager folder into your AddOns folder GitHub: https://github.com/gashole/TimeManager -
[AddOn] TimeManager (alarm clock, stopwatch, local time)
gashole replied to gashole's topic in UI, AddOns & Macros
Updated to add support for modui. -
Now it does.
-
Can't seem to get AddOns to function...
gashole replied to Brokenangel099's topic in UI, AddOns & Macros
Make sure the folder name is the same as the .toc file inside, and the .toc file is located at Interface/AddOns/AddOnName/AddOnName.toc. http://wowwiki.wikia.com/wiki/Installing_an_addon -
[AddOn] TimeManager (alarm clock, stopwatch, local time)
gashole replied to gashole's topic in UI, AddOns & Macros
Updated to add localization support for Chinese, French, German, and Russian. -
Looking for help to get large healthbars for modUI
gashole replied to Cruzix's topic in UI, AddOns & Macros
Gold received, thanks! -
Looking for help to get large healthbars for modUI
gashole replied to Cruzix's topic in UI, AddOns & Macros
Renamed AddOn to modui-TallHealthBar https://github.com/gashole/modui-TallHealthBar Ah, submit an enhancement request on the modui issue tracker and link the AddOn. The hardest part isn't adding the feature; it's finding a place to put the toggle on the modui options window. -
Looking for help to get large healthbars for modUI
gashole replied to Cruzix's topic in UI, AddOns & Macros
Updated to remove some unneeded code and textures for elite and rare frames. https://github.com/gashole/modui-TallHealthBar/releases/download/current/modui-TallHealthBar.zip -
Looking for help to get large healthbars for modUI
gashole replied to Cruzix's topic in UI, AddOns & Macros
I doubt moving everything into modui is going to improve loading time — it still needs to be loaded. Keep in mind that modui has many AddOns inside. These are called 'elements' and modui-UnitFramesImproved was designed to be a custom one. The only difference is the .toc file makes it an AddOn, which also means no extra code is required to enable/disable it. Anyway, if you want to load it like other elements: from the AddOns folder remove modui-UnitFramesImproved/modui-UnitFramesImproved.toc open modui/modui.toc and add this to be bottom: ..\modui-UnitFramesImproved\core.lua Sure, my character name is Cochise. -
Looking for help to get large healthbars for modUI
gashole replied to Cruzix's topic in UI, AddOns & Macros
https://github.com/gashole/modui-TallHealthBar -
Looking for help to get large healthbars for modUI
gashole replied to Cruzix's topic in UI, AddOns & Macros
I will upload something later when I have more time. Don't worry about the gold. -
Argument being passed as nil to original function when post-hooking
gashole replied to Markk's topic in UI, AddOns & Macros
I corrected it; however, "event" can be used in this hooked function without error. -
Argument being passed as nil to original function when post-hooking
gashole replied to Markk's topic in UI, AddOns & Macros
originalTestFunction(_, str); or MTweaks.originalTestFunction = MTweaks.TestFunction; function MTweaks:TestFunction(str) ... MTweaks:originalTestFunction(str); -
This will do that for you. To install, copy/paste the code below into new text files and save them as HideHotKey.toc and HideHotKey.lua. Once done, move them to a new folder called HideHotKey in your AddOns folder. HideHotKey.toc ## Interface: 11200 ## Title: HideHotKey HideHotKey.lua HideHotKey.lua local _G = getfenv(0) local buttons = { "ActionButton", "BonusActionButton", "MultiBarBottomLeftButton", "MultiBarBottomRightButton", "MultiBarLeftButton", "MultiBarRightButton", } for b = 1, getn(buttons) do for i = 1, NUM_ACTIONBAR_BUTTONS do _G[buttons[b]..i.."HotKey"]:Hide() _G[buttons[b]..i.."HotKey"].Show = function() end end end
-
You would need to find an AddOn that adds those features for macros.
-
/run local _, _, active = GetShapeshiftFormInfo(1) if not active or IsControlKeyDown() then for i = 2, 4 do _, _, active = GetShapeshiftFormInfo(i) if active then CastShapeshiftForm(i) return end end CastShapeshiftForm(1) else CastSpellByName"Bash" end
-
/run SetCVar("EnableErrorSpeech", 0) UIErrorsFrame:UnregisterEvent"UI_ERROR_MESSAGE" CastSpellByName"SPELLNAME" UIErrorsFrame:RegisterEvent"UI_ERROR_MESSAGE" SetCVar("EnableErrorSpeech", 1) or /console EnableErrorSpeech 0 /run UIErrorsFrame:UnregisterEvent"UI_ERROR_MESSAGE" /run CastSpellByName"SPELLNAME" /run UIErrorsFrame:RegisterEvent"UI_ERROR_MESSAGE" /console EnableErrorSpeech 1
