Jump to content

Rhena

Player
  • Content count

    190
  • Joined

  • Last visited

Everything posted by Rhena

  1. Rhena

    [ADDON] LunaUnitFrames

    Since 2.xx there is one fontstring in the center instead of two. Sadly the client doesn't display whats behind the line break when it cuts off the string with the three dots. But making it three fontstrings (left,right,center) is part of the modular design and i'm not making the raid frames a special case. If it doesn't fit, then it doesn't fit. You have the tools to adjust the sizes. Or use the new tag [namehealerhealth].
  2. Did you download one of the releases (which one)? Or the current master?
  3. Rhena

    [ADDON] LunaUnitFrames

    Karrier: The target of target is throttled on Nost to improve server performance. Luna does try to refresh it at soon as you change target but it takes the server a bit of time to actually change it. Regarding the casts see https://github.com/Aviana/LunaUnitFrames/issues/199 Anceron: This is a known issue. https://github.com/Aviana/LunaUnitFrames/issues/191 However i have problems to reproduce this problem. It works perfectly fine for me. Even if Luna is the only active addon its broken for the guy who made the ticket and it works on my end. Is that the case for you too? Even when you use the current master? What are the relevant settings you might have switched in Luna?
  4. Rhena

    [ADDON] LunaUnitFrames

    Euronymous: Put MouseLookStart() on to your right mouse button. lumpy: thanks for reporting that, it will be fixed in the next release.
  5. Rhena

    [ADDON] LunaUnitFrames

    Kelem: I've added it to the feature requests. Ellipsea: You can use the raidframes in 5mans or use the aggro tag or agro color tag. And a slider for transparency of the highlight has been added to requests. ilidza: Yes.
  6. Rhena

    [Addon] DebuffTimers

    What i meant you will never go 100%. Everything is an estimation and could be wrong at some point. Lets say you track through hooking the cast functions. As soon as there is more than one of the debuff on your target and one gets dispelled you don't know if it was yours that got dispelled or not. And what are you gonna do then? Which debuff needs to be bigger? None? Or just leave one bigger and pretend? The user of your addon will notice and they will come back to you and file those error reports that your addon is not working. I prefer to not touch those things that can't be done 100%, thats why my unitframes don't show debuff tracking on their own.
  7. Rhena

    [ADDON] LunaUnitFrames

    You have to clear the settings from your wtf folder like i told you to in the first post when going from the old 1.xx version to 2.xx. After that, you can always keep your settings when upgrading.
  8. Rhena

    [ADDON] LunaUnitFrames

    The ora2 cooldown monitor is also annoying like that.
  9. Rhena

    [ADDON] LunaUnitFrames

    A workaround to still show cooldowns is to make macros like this: /script if nil then CastSpellByName("Heal") end /lunamo Heal The first line does nothing but the bar will show its state based on that spell (out of mana, range) For your annoying bug could you please make the following macro: /script DEFAULT_CHAT_FRAME:AddMessage(GetMouseFocus():GetName()) The next time it occurs move your mouse over the nonclickable area and press this macro. The name of the frame your mouse is over should appear in the chat. Report back with that name.
  10. http://addons.us.to/addon/rangerecolor
  11. Hi, i made thing. This should work pretty well when farming solo. But since it depends on the chat message that the instance was reset, i don't know if it works if you are not party leader. It will remember through relogging and show across all characters on the same account. Lastly: Don't expect the timers to be accurate by the second, the server time works a bit different than your local time (it does not provide seconds). Might improve in the future to show when each of the lockouts expires. https://github.com/Aviana/FuBar_InstanceResetFu/releases
  12. Rhena

    [Addon] DebuffTimers

    You will never ever track your own buffs in vanilla. The UI doesnt tell you which of those 5 shadowword: pain on the mob is yours. Therefore "yours" can't be bigger. God damit it triggers me so much when people see all the features that get made using clever coding but then get pissy when not every retail feature gets implemented.
  13. All this requires is the addon comm channel which is present 1.12. So yes its possible.
  14. Rhena

    [ADDON] LunaUnitFrames

    Nichols: I will try to reproduce and fix it when i get around to queue for av. Gravlax: No. I suggest using the raidframes in 5 mans too if you like a compact group setup. Also could someone who had issues with the inc healing and clickcasting download the current master and try if its fixed? (I wanna make sure this time) https://github.com/Aviana/LunaUnitFrames/archive/master.zip (don't forget to rename)
  15. You can use zip files without any 3rd party programm in Windows but 7zip requires one that makes it more "exotic". But nevermind, you improved your first post i see. I will link it in my addon description so people will find it easier.
  16. Rhena

    [ADDON] LunaUnitFrames

    I remember the Nost provided client not using the wtf folder inside the wow folder. It's somewhere in the Windows user folder instead.
  17. Rhena

    [ADDON] LunaUnitFrames

    Debuffs had the color option before 2.12 Physical debuffs simply have no color. Thus showing the border texture file.
  18. You claim convinience but you didn't pack the plugin and Clique together into a single zip file. Instead you re-packed my addon into a more exotic file format. And you re-uploaded it, making people download an outdated version once i update my addon. I'm sorry but this is just stupid.
  19. Rhena

    [ADDON] LunaUnitFrames

    Well its alwas the first error thats important. The others are always caused by the script stopping. Try downloading the master and see if the errors are fixed. https://github.com/Aviana/LunaUnitFrames/archive/master.zip Don't forget to rename the folder.
  20. Why V.1095? Why not look into the options yourself to see if auras (buffs and debuffs) are enabled? Why use rend as a warrior? Just why...
  21. Rhena

    Making Draggable Frame

    No you have to do it like this: PetHappinessFrame:SetScript("OnDragStart", function() this:StartMoving() end) PetHappinessFrame:SetScript("OnDragStop", function() this:StopMovingorSizing() end)
  22. Rhena

    [ADDON] LunaUnitFrames

    There are already too many options in this addon. So i gotta be picky about it. If you want a custom font just replace one of the existing ones.
  23. Rhena

    Developing addons for 1.12

    UNIT_HAPPINESS Is the event you are looking for. AuroraLib = AceLibrary("AceAddon-2.0"):new("AceConsole-2.0","AceEvent-2.0") function AuroraLib:OnInitialize() -- Called when the addon is loaded DEFAULT_CHAT_FRAME:AddMessage("AuroraLib: Loaded") self:RegisterEvent("UNIT_HAPPINESS") end function AuroraLib:UNIT_HAPPINESS() DEFAULT_CHAT_FRAME:AddMessage("AuroraLib: Happiness changed") end function AuroraLib:OnEnable() -- Called when the addon is enabled DEFAULT_CHAT_FRAME:AddMessage("AuroraLib: Loaded") end function AuroraLib:OnDisable() -- Called when the addon is disabled end
  24. Rhena

    [ADDON] LunaUnitFrames

    Winsane: The energy ticker is also used to attack just before the next tick so no. Try [levelcolor]Lv.[level][br][nocolor][name] Clear Toby: No, it was changed to be this shining overlay with version 2.xx
×