Jump to content

Atreyyo

Player
  • Content count

    11
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Atreyyo

  • Rank
    Lurker

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Atreyyo

    Cor, CoA, SL macro

    Apparantly spamming /autodot made it skip casting dots, so I fixed that. Get the new version and spam away! https://github.com/Atreyyo/AutoDot
  2. Atreyyo

    Cor, CoA, SL macro

    I made a very small addon that does all this. Install and make a macro with /autodot You can always add shadowbolt in the macro so it will cast shadow bolt when all dots are up. /autodot /cast Shadow Bolt https://github.com/Atreyyo/AutoDot Disclaimer - I did not add resist/immune check, so if you dot gets resisted or target is immune it wont be cast again until the full duration is over, or you switch target.
  3. Atreyyo

    [ADDON] LunaUnitFrames

    Is there a version luna for tbc?
  4. I made an addon a while ago that tracks certain cooldowns of players in raid. It doesn't exactly do what you are looking for but it can really come in handy while raiding. https://github.com/Atreyyo/RAT It wouldn't be that hard tho to write something up that does what you are looking for. I could do it when I get some spare time and not on my cellphone ^^
  5. Atreyyo

    Help with basic paladin macro

    In your first macro you need to first make a check to see if you already have seal of crusader buffed on your character, else it will just keep casting seal of crusader. SuperMacro is an excellent addon to make macros with, I suggest you download that. Then you can use this macro. /script if not buffed("Seal of the Crusader", "player") then CastSpellByName("Seal of the Crusader") end CastSpellByName("Judgement") You will of course need to press the macro twice if you don't already have Seal of the Crusader buffed, since you can't execute 2 spells at the same time. In your second macro you added /script SpellStopCasting() which does exactly what it says, it cancels your cast. Remove that or put it first before you cast Holy Light to make it work. /script SpellStopCasting() /cast Holy Light
  6. Atreyyo

    Healthstone/healing potion macro

    Might be possibly to slim it down. Else there's always supermacro <3
  7. Atreyyo

    Healthstone/healing potion macro

    If you want to use both you could try this. Have not tested it but should work, if the api I got the info from is correct ^^ /script for bag=0,4 do local slots=GetContainerNumSlots(bag) for slot=1,slots do if GetContainerItemInfo(bag, slot) ~= nil then local _,_,_,_,_,_,string=GetContainerItemInfo(bag, slot); if string.find(string,"Healthstone") and (UnitHealthMax("player")-UnitHealth("player") > 1000) then UseContainerItem(bag,slot); end if string.find(string,"Healing Potion") and (UnitHealthMax("player")-UnitHealth("player") > 1000) then UseContainerItem(bag,slot); end end end end Edit: Saw you already had one like this, but I added a hp check so it wont use it unless it can heal atleast 1k hp.
  8. Atreyyo

    [AddOn] RAT (Raid Ability Tracker)

    Nice to hear it works :) Hold down "Alt" to move frame.
  9. Atreyyo

    [AddOn] RAT (Raid Ability Tracker)

    Thanks for the feedback, I looked into it and found a spelling error which was the culprit who caused these issues. Should be working now, feel free to try it out! https://github.com/Atreyyo/RAT
  10. Atreyyo

    [AddOn] RAT (Raid Ability Tracker)

    "Interface\\auctionframe\\ui-auctionframe-auction-top" is from wows own textures, this is the same texture you see when you visit the auctonhouse. Did you get any error message? I did not add priests as I didnt think anyone would want that and I never had a request to add them.
  11. Introducing Raid Ability Tracker What is Raid Ability Tracker? It's basicly an addon that tracks certain class ability cooldowns (in raid) and puts them in an easy to view list. Quickly sort by class or ability. Only players with RAT will be listed, which means, if a player does not have the addon installed, you will not be able to see his cooldowns in RAT. Set up your settings in the options menu before use. Hold down "Alt" to move frame. Github: https://github.com/Atreyyo/RAT
×