Jump to content

gashole

Player
  • Content count

    33
  • Joined

  • Last visited

Everything posted by gashole

  1. gashole

    [Mac] Short freeze when targeting

    Try unchecking the "Show Target Damage" box in Interface Options under the Advanced Options tab. This fixes the problem on my end.
  2. gashole

    [Mac] Short freeze when targeting

    @Rafale do you play a Paladin? Seals seem to be the problem. The Mac client throws Assertion errors after attacking with a Seal ability.
  3. gashole

    Keeping addons up to date

    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.
  4. gashole

    [Addon] UnitFramesImproved_Vanilla

    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.
  5. gashole

    [Addon] UnitFramesImproved_Vanilla

    Here, try this. ManaBarColor[0].r = 0.50 ManaBarColor[0].g = 0.50 ManaBarColor[0].b = 1.00
  6. gashole

    [Addon] UnitFramesImproved_Vanilla

    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
  7. gashole

    modui

    Remove "-master" from the folder name when installing without Git.
  8. 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
  9. Updated to add support for modui.
  10. gashole

    [Addon] FocusFrame

    Now it does.
  11. gashole

    Can't seem to get AddOns to function...

    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
  12. Updated to add localization support for Chinese, French, German, and Russian.
  13. 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.
  14. 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
  15. 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.
  16. https://github.com/gashole/modui-TallHealthBar
  17. I will upload something later when I have more time. Don't worry about the gold.
  18. I corrected it; however, "event" can be used in this hooked function without error.
  19. originalTestFunction(_, str); or MTweaks.originalTestFunction = MTweaks.TestFunction; function MTweaks:TestFunction(str) ... MTweaks:originalTestFunction(str);
  20. gashole

    Addon to hide hotkeys from action bars?

    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
  21. gashole

    Shapeshift Macros

    You would need to find an AddOn that adds those features for macros.
  22. gashole

    Shapeshift 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
  23. gashole

    Macro - Error sound ?

    /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
×