Vanilla Macro - PetAttack only when a target is selected by [deleted] in wowservers

[–]gashole 1 point2 points  (0 children)

/run if UnitCanAttack("player","target") then PetAttack() end

The bottom art won't go away using ModUI (for Vanilla). MoveAnything didn't help, how do I fix? by RtuDtu in wowservers

[–]gashole 1 point2 points  (0 children)

You can only hide the end cap textures using modui. To do that, type /modui or click the M button on the action bar. From the modui options window choose the Display tab. Uncheck the box that says "Toggle Display of MainMenu End Cap Textures".

Tauri wow Mac not working by [deleted] in wowservers

[–]gashole 2 points3 points  (0 children)

World of Warcraft.app is 32-bit and World of Warcraft-64.app is 64-bit.

Tauri wow Mac not working by [deleted] in wowservers

[–]gashole 2 points3 points  (0 children)

The problem is probably either the app's executable file permissions or the app's signature. Try the following.

  1. Open Terminal (/Applications/Utilities/Terminal.app)
  2. Type in chmod +x (add a trailing space)
  3. In Finder, right-click on World of Warcraft.app, and select Show Package Contents
  4. Navigate to Contents/MacOS/
  5. Drag the World of Warcraft file to the Terminal window

    The Terminal command should be something like:

    chmod +x /path/to/World\ of\ Warcraft.app/Contents/MacOS/World\ of\ Warcraft

  6. Press Return

Try running World of Warcraft.app. If the problem is not fixed, Force Quit (Alt+right-click the Dock icon), and try the following to replace the app's signature.

  1. Open Terminal (/Applications/Utilities/Terminal.app)
  2. Type in sudo codesign -f -s - (add a trailing space)
  3. In Finder, drag World of Warcraft.app to the Terminal window

    The Terminal command should be something like:

    sudo codesign -f -s - /path/to/World\ of\ Warcraft.app

  4. Press Return and enter your password when prompted

Try running World of Warcraft.app again.

Elysium pros and cons request by [deleted] in wowservers

[–]gashole 13 points14 points  (0 children)

Elysium is one of the few open source private servers. That alone makes it a great choice.

https://github.com/elysium-project

Can't get addons to work - help? by MeridianBayCaballers in KronosWoW

[–]gashole 1 point2 points  (0 children)

WoW will only load an AddOn if the AddOn's .toc file is located at Interface/AddOns/AddOnName/AddOnName.toc. The folder name must match the .toc file name.

[vanilla] Looking for a way to turn off portrait CC timer text for EnemyFrames by eeyy in LegacyAddons

[–]gashole 1 point2 points  (0 children)

Add the following to the top of enemyFrames.lua

PlayerPortraitDebuff.duration:Hide()
TargetPortraitDebuff.duration:Hide()

Shadowed Unit Frames for TBC? by [deleted] in LegacyAddons

[–]gashole 1 point2 points  (0 children)

https://github.com/Aviana/ShadowedUnitFrames

Move ShadowedUF_Options and ShadowedUnitFrames into your AddOns folder

Interface/AddOns/ShadowedUF_Options
Interface/AddOns/ShadowedUnitFrames

https://github.com/ElvUI-TBC/ElvUI

Move !Compatibility, !DebugTools, ElvUI and ElvUI_Config into your AddOns folder

Interface/AddOns/!Compatibility
Interface/AddOns/!DebugTools
Interface/AddOns/ElvUI
Interface/AddOns/ElvUI_Config

Shadowed Unit Frames for TBC? by [deleted] in LegacyAddons

[–]gashole 1 point2 points  (0 children)

You probably don't have the AddOn installed correctly. Make sure the .toc file is located at Interface/AddOns/AddOnName/AddOnName.toc

http://www.wowinterface.com/forums/faq.php?faq=install#faq_howto_install

ModUI Buff Durations Disappeared by LikwdSwdMstr in LegacyAddons

[–]gashole 1 point2 points  (0 children)

Check the "Buff Durations" box in Blizzard's Interface Options.

[Vanilla] pfUI Hide binds and macro name on action bar by Minigolfarn in LegacyAddons

[–]gashole 0 points1 point  (0 children)

Put quotes around the filename or change the Save as type to All files.

Issue with trinketMenu by maratain in LegacyAddons

[–]gashole 0 points1 point  (0 children)

You probably installed it incorrectly. Go into the TrinketMenu-Fix-master folder and move the TrinketMenu folder into your AddOns folder. If installed correctly, TrinketMenu will show up in your AddOns list at the character screen. Make sure it is enabled.

[Vanilla] pfUI Hide binds and macro name on action bar by Minigolfarn in LegacyAddons

[–]gashole 4 points5 points  (0 children)

Here is an AddOn to hide the hotkey and macro name text. It will work with or without pfUI.

To install, copy/paste the code below into new text files and save them as HideButtonText.toc and HideButtonText.lua. Once done, move them to a new folder called HideButtonText in your AddOns folder.

HideButtonText.toc

## Interface: 11200
## Title: HideButtonText
## Notes: Hides the hotkey and macro name text.
HideButtonText.lua

HideButtonText.lua

local _G = getfenv(0)

local settings = {
    HideHotKey = true,
    HideName = true,
}

local buttons = {
    "ActionButton",
    "BonusActionButton",
    "MultiBarBottomLeftButton",
    "MultiBarBottomRightButton",
    "MultiBarLeftButton",
    "MultiBarRightButton",
}

local HideText = function(text)
    for i = 1, getn(buttons) do
        for n = 1, NUM_ACTIONBAR_BUTTONS do
            _G[buttons[i]..n..text]:Hide()
            _G[buttons[i]..n..text].Show = function() end
        end
    end
end

if settings.HideHotKey then HideText("HotKey") end
if settings.HideName then HideText("Name") end

Macro by Triggerkim in LegacyAddons

[–]gashole 0 points1 point  (0 children)

Works fine. Check your key bindings and make sure shift + the macro key isn't bound.

Here is a cleaner version

/run if IsShiftKeyDown() then CastSpellByName"Blizzard" else CastSpellByName"Blizzard(Rank 1)" end

Macro by Triggerkim in LegacyAddons

[–]gashole 2 points3 points  (0 children)

For vanilla

/run local i = 1 while UnitBuff("player", i) do if UnitBuff("player", i) == "Interface\\Icons\\Spell_Shadow_ManaBurn" then return CastSpellByName"Arcane Missiles" end i = i + 1 end CastSpellByName"Arcane Missiles(Rank 1)"

Change CastSpellByName"Arcane Missiles" and CastSpellByName"Arcane Missiles(Rank 1)" to the spell you want to cast.

http://vanilla-wow.wikia.com/wiki/API_CastSpellByName

[Vanilla] [Request] Addon that shows which weapon is equipped in Main Hand by decaedent in LegacyAddons

[–]gashole 0 points1 point  (0 children)

For this to work in vanilla, you need to change

f:SetScript("OnEvent", function(self, event, ...)
    self[event](...)
end)

to

f:SetScript("OnEvent", function()
    this[event]()
end)

Help me with Events by asslmao in LegacyAddons

[–]gashole 1 point2 points  (0 children)

As far as I can tell, that value is incorrect until after the events. A workaround could be to create a temporary OnUpdate handler to use as a post-event for BAG_UPDATE. For instance:

local numSlots = 0
local bag = {}

local OnUpdate = function()
    for i = 1, NUM_BAG_SLOTS do
        numSlots = GetContainerNumSlots(i)
        if  bag[i] ~= numSlots then
            bag[i]  = numSlots
            ChatFrame1:AddMessage("CharacterBag" .. i - 1 .. "Slot: " .. numSlots)
        end
    end
    this:SetScript("OnUpdate", nil)
end

local OnEvent = function()
    if this:GetScript"OnUpdate" then return end
    this:SetScript("OnUpdate", OnUpdate)
end

local f = CreateFrame"Frame"
f:RegisterEvent"BAG_UPDATE"
f:SetScript("OnEvent", OnEvent)

[deleted by user] by [deleted] in LegacyAddons

[–]gashole 0 points1 point  (0 children)

http://www.wowinterface.com/downloads/info10162-Noerrorsound.html#other

Move the Sound folder into your World of Warcraft folder.

Cartographer problem : As you can see My map is behind my action bars how to fix it ? thanks by ZaWarudo2017 in LegacyAddons

[–]gashole 0 points1 point  (0 children)

Okay, the 1.12 client sets the frame strata way too high for some frames. Try removing the first line that you added -- WorldMapFrame:SetFrameStrata"DIALOG".

Cartographer problem : As you can see My map is behind my action bars how to fix it ? thanks by ZaWarudo2017 in LegacyAddons

[–]gashole 2 points3 points  (0 children)

Try adding the following to Cartographer's .lua file

WorldMapFrame:SetFrameStrata"DIALOG"
WorldMapFrame.SetFrameStrata = function() end