1. #10181
    Quote Originally Posted by Pharrax View Post
    I was wondering if there is an addon to descend chat text instead of the standard direction that chat text flows. For example instead of a new line of text in the chat box beginning from the bottom with the old text history on top, I want the complete opposite where you scroll down to see old text and new liens on top as my chat box is placed in the top left instead of bottom left.

    Is there such an addon for this?
    Read this thread: http://us.battle.net/wow/en/forum/topic/4422362377#1

  2. #10182
    Anyone know of a lightweight addon that will show you the horizontal positioning of your character to maximize flight speed? (As in, when you're perfectly horizontal to a flat ground?

    I'm sick of doing archaeology, leaving my character flying while I run to the bathroom or something, come back near the digsite, but so far up in the air, I find it quicker to just drop off my mount.

  3. #10183
    Deleted
    Quote Originally Posted by Myzou View Post
    Anyone know of a lightweight addon that will show you the horizontal positioning of your character to maximize flight speed? (As in, when you're perfectly horizontal to a flat ground?

    I'm sick of doing archaeology, leaving my character flying while I run to the bathroom or something, come back near the digsite, but so far up in the air, I find it quicker to just drop off my mount.
    I haven't tried any of them:

    FlightHUD
    LevelFlight
    FlyPitch

  4. #10184
    Deleted
    Code:
    local f=CreateFrame("Frame",nil,UIParent)
    f:SetPoint("BOTTOMRIGHT",-50,150) -- modify this line for positioning. See this for details.
    
    local UnitIsUnit, UnitPitch, IsMounted, deg =
           UnitIsUnit, UnitPitch, IsMounted, math.deg
    f:Hide()
    f:SetSize(1,1)
    f:SetFrameStrata("FULLSCREEN_DIALOG")
    local t=f:CreateFontString(nil,"ARTWORK")
    t:SetPoint("RIGHT",f,"RIGHT")
    t:SetFont("Fonts\\FRIZQT__.TTF",20,"OUTLINE")
    t:SetTextColor(1,0.82,0)
    f:SetScript("OnEvent",function(self,event,uID)
        if (event == "UNIT_AURA") and UnitIsUnit("player",uID) then
            if IsMounted() then
                self:Show()
                t:Show()
                t:SetText()
            else
                self:Hide()
                t:Hide()
            end
        end
    end)
    f:RegisterEvent("UNIT_AURA")
    f:SetScript("OnUpdate",function() -- couldn't find any event indicating pitch, thus OnUpdate
        t:SetText(("%.3g°"):format(deg(GetUnitPitch("player"))))
    end)
    Untested. How to use. Report back with issues.

  5. #10185
    From what I coould see before the realms went down, it worked fine, except it wouldn't show the info until I left the sub zone I was in. (Like, I was in Karnum's Glade, and when I mounted, nothing. When I left Karnum's Glade, it popped up. If I re-entered while still mounted, the info was still there.)

  6. #10186
    Deleted
    Hm, so I suppose IsMounted doesn't return true yet when the respective UNIT_AURA fires. Give me a second.

    ---------- Post added 2012-06-26 at 03:28 PM ----------

    Code:
    local f=CreateFrame("Frame",nil,UIParent)
    f:SetPoint("BOTTOMRIGHT",-50,150) -- modify this line for positioning. See this for details.
    
    local UnitIsUnit, UnitPitch, IsMounted, deg =
           UnitIsUnit, UnitPitch, IsMounted, math.deg
    f:SetSize(1,1)
    f:SetFrameStrata("FULLSCREEN_DIALOG")
    local t=f:CreateFontString(nil,"ARTWORK")
    t:SetPoint("RIGHT",f,"RIGHT")
    t:SetFont("Fonts\\FRIZQT__.TTF",20,"OUTLINE")
    t:SetTextColor(1,0.82,0)
    f:SetScript("OnUpdate",function(s,e) -- couldn't find any event indicating pitch, thus OnUpdate
        s.e = (s.e or 0)+e
        if s.e >= 1 then
            if IsMounted() then
                s.check = true
                t:Show()
                t:SetText()
            else
                s.check = false
                t:Hide()
            end
            s.e=0
         end
         if s.check then
            t:SetText(("%.3g°"):format(deg(GetUnitPitch("player"))))
         end
    end)
    Can't think of any other events that fire on mounting right now. If you're bothered with efficiency, do an /eventtrace and see if any events pop up whenever you mount/dismount, then tell me those and I'll see what I can do.
    Last edited by mmocba105e19de; 2012-06-26 at 01:29 PM.

  7. #10187
    Is there an addon that just simply tells me my runic power, with simply a number? No bar, nothing else, just the actual number?

  8. #10188
    Quote Originally Posted by crylo View Post
    Is there an addon that just simply tells me my runic power, with simply a number? No bar, nothing else, just the actual number?
    http://www.curse.com/addons/wow/rpt
    http://www.wowinterface.com/download...PowerText.html

  9. #10189
    Hunter/Tukui

    Looking for a Addon to track pet debuffs.

  10. #10190
    Quote Originally Posted by Moriat View Post
    Hunter/Tukui

    Looking for a Addon to track pet debuffs.
    Well you can set up your Pitbull4 to show debuffs and buffs however you like - if you use it / can use it.

  11. #10191
    Can anyone tell me what the dot tracker in this video is?


  12. #10192
    Quote Originally Posted by Lorticus View Post
    Can anyone tell me what the dot tracker in this video is?

    http://www.youtube.com/watch?v=ZJi6v8uyJq8
    It says right in the video description that you linked:

    DoT Timer: http://www.wowinterface.com/download...eedToKnow.html

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  13. #10193
    Looking some sort of working classtimer for MoP, atm neither ClassTimer nor RoguePowerBars (which is the one I on live) is working properly, meaning be able to give timers priorities.

    Thanks in advance

  14. #10194
    Most of my main abilities on my Hunter are macro'd with:

    Code:
    /petattack [@pettarget,noexists]
    Wondering if there is a way to combine with Rabid. I like to keep my pet on Passive and leave it to attack whatever I first put it on or attack first.

    I've tried "/cast Rabid [@pettarget,noexists]" but it doesn't seem to work. It doesn't work because it makes my pet act like it's on Assist instead of Passive. I like leaving my pet on Zon'ozz, Yor'sahj/Yor'sajh and the like (I have no clue how to spell that boss's name..).

    Sorry, kinda bad at making macros. Any help is appreciated.

  15. #10195
    Quote Originally Posted by Jeremypwnz View Post
    Most of my main abilities on my Hunter are macro'd with:

    Code:
    /petattack [@pettarget,noexists]
    Wondering if there is a way to combine with Rabid. I like to keep my pet on Passive and leave it to attack whatever I first put it on or attack first.

    I've tried "/cast Rabid [@pettarget,noexists]" but it doesn't seem to work. It doesn't work because it makes my pet act like it's on Assist instead of Passive. I like leaving my pet on Zon'ozz, Yor'sahj/Yor'sajh and the like (I have no clue how to spell that boss's name..).

    Sorry, kinda bad at making macros. Any help is appreciated.
    No, /cast commands check conditions against the target you're casting on. Only special commands like /focus, /target, /petattack and so on can check against currently targetted unit. You can read more about it here:
    http://www.wowpedia.org/Making_a_mac...nit_parameters

  16. #10196
    Quote Originally Posted by lawomous View Post
    It says right in the video description that you linked:

    DoT Timer: http://www.wowinterface.com/download...eedToKnow.html
    Haha, tricky. He must have updated it in the past 12-18 hours because I checked it when I first watched the video.

    Thank you for your help!

  17. #10197
    I want to know what the addon underneath BattlegroundTargets is called.
    http://imgur.com/4Iq1D

  18. #10198
    http://www.warcraftmovies.com/movieview.php?id=215337

    does anyone know the name of the addon that contains armor, durability and avoidance? in the lower left corner of the video.

    Thank you.

  19. #10199
    Deleted
    Quote Originally Posted by K4HN View Post
    does anyone know the name of the addon that contains armor, durability and avoidance? in the lower left corner of the video.

    Thank you.
    elvui or tukui

  20. #10200
    Deleted
    Quote Originally Posted by hell123 View Post
    I want to know what the addon underneath BattlegroundTargets is called.
    http://imgur.com/4Iq1D
    That comes with BattlegroundTargets, check the button for Summary under Layout in the configuration

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •