Download
(145Kb)
Download
Updated: 09-09-12 12:43 PM
Pictures
File Info
Updated:09-09-12 12:43 PM
Created:10-10-10 06:50 AM
Downloads:21,453
Favorites:54
MD5:
Categories:Paladin, Casting Bars, Cooldowns, Combat Mods

HolyTrinity  Popular! (More than 5000 hits)

Version: 1.10
by: PsiVen [More]

This is the Mists of Pandaria Release (5.0.4) version of the addon.
If you need the Cataclysm (4.3) version, download version 1.08 instead.
HolyTrinity is not supported for Warlords of Draenor, Legion, and beyond. Sorry! I recommend the excellent WeakAuras for your Holy Power and cooldown display needs.


A minimalistic paladin UI for displaying Holy Power and cooldowns, based on suicidalkatt's excellent SoulBurned warlock addon.

Cooldowns can be enabled/disabled individually and all bars are configurable by order/color/texture. SharedMedia supported.

Usage: /holytrinity


-- v1.10 --
Added option to hide the Holy Power background outlines.

-- v1.09 --
Mists of Pandaria Beta release.
Added support for 5 Holy Power (enabled by default). Changing this option requires ReloadUI.
Added new offsets to move Holy Power 4 & 5 independently.
Guardian of Ancient Kings was split into 3 spell IDs. This may cause issues.
Removed Word of Glory as it no longer has a cooldown.
Removed Divine Sacrifice, Aura Mastery, Zealotry, and Divine Favor.
Added Hand of Purity, Devotion Aura, Holy Avenger, Speed of Light, and Fist of Justice.
Added Execution Sentence, Holy Prism, and Light's Hammer.
Disabled audio preview button as it is currently broken.

-- v1.08 --
Added option to fade at zero holy power.
Removed Holy Radiance as it no longer has a cooldown.

-- v1.07 --
Added Rebuke.
Added Word of Glory (Holy should leave this disabled).

-- v1.06 --
Fixed all instances of nil duration errors (hopefully).
Holy Power will now refresh properly after a loading screen.
Removed LibBetterBlizzOptions.

-- v1.05 --
Added optional sound effects for when you hit 3 Holy Power.
Fixed a bug where others paladins' abilities could trigger errors.
Added Holy Shock support by request (disabled by default).

-- v1.04 --
Corrected the default Holy Power spacing to be left-to-right (negative values flip the spacing direction).
Fixed a bug where timers would expire with nil durations and produce LUA errors.

-- v1.03 --
Added configuration options for spacing the Holy Power bars. They can now be stacked vertically and reversed.
Added configuration options for resizing the Holy Power bars. This stretches the texture and may not look ideal in all shapes and sizes.

-- v1.02 --
Added checkbox to enable collapsing cooldowns (enabled by default).
Added Hammer of Justice.
Fixed a bug preventing Light of Dawn and Divine Favor from working.
Cooldown anchor can now be offset from the Holy Power bar.
Cooldown spacing can now be adjusted.

-- v1.01 --
Added Divine Favor and Light of Dawn.
Added checkbox to flip cooldowns to above instead of below.
Added checkbox to disable the Holy Power bar (requires ReloadUI).

-- v1.00 --
Initial release.

Post A Reply Comment Options
Unread 10-15-14, 12:05 PM  
Eraeos
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
6.0.2

It says its installed, but it simply doesnt show on my screen nor does it work with /holytrinity
Report comment to moderator  
Reply With Quote
Unread 10-15-14, 12:01 PM  
PsiVen
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 13
Uploads: 5
Hey folks,

I'm hearing the newest patch finally broke something. I have no active accounts currently, but I will probably look into it closer to WoD release. In the meantime please put up a log of whatever error you are encountering and maybe I can put out an untested fix.

Thanks!
Report comment to moderator  
Reply With Quote
Unread 10-15-14, 11:27 AM  
Eraeos
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
6.0.2

Hey,

Anyone else having trubble with this in the new patch?
Report comment to moderator  
Reply With Quote
Unread 09-30-12, 06:30 AM  
mrkurtz
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
i don't know if anyone else is interested, but based on my UI, i decided it'd be best to not have spell names, cd countdown, or icons for the cooldowns.

to do this, i just commented out the relevant lines by adding a "--" (without the quotes) to the beginning of each line in the following sections of HolyTrinity.lua (not counting lines beginning with local):
Text Timer
Spell Name Text
Cooldown Texture
Cooldown Icon Border
this makes each section look like:

Code:
-- Text Timer
		local tdur = frame:CreateFontString(nil, "OVERLAY", "GameFontNormal")
		--tdur:SetFont(vfont, 12, "OUTLINE")
		--tdur:SetShadowColor(0,0,0,1)
		--tdur:SetText("")
		--tdur:SetJustifyH("RIGHT")
		--tdur:SetPoint("RIGHT", frame, "RIGHT", -102, 0)

-- Spell Name Text
		local sname = frame:CreateFontString(nil, "OVERLAY", "GameFontNormal")
		--tdur:SetFont(vfont, 12, "OUTLINE")
		--sname:SetShadowColor(0,0,0,1)
		--sname:SetText(spellname)
		--sname:SetJustifyH("LEFT")
		--sname:SetPoint("LEFT", frame, "LEFT", 102, -12)	

-- Cooldown Texture
		local texture = frame:CreateTexture("texture", "BACKGROUND")
		--texture:SetPoint("CENTER", bar, "CENTER", -117, 0)
		--texture:SetTexture(GetSpellTexture(GetSpellInfo(spell)))
		--texture:SetTexCoord(0.08,0.92,0.08,0.92)
		--texture:SetHeight(24)
		--texture:SetWidth(24)

-- Cooldown Icon Border
		local border = frame:CreateTexture("texture", "OVERLAY")
		--border:SetPoint("CENTER", texture, "CENTER")
		--border:SetTexture(art.."border")
		--border:SetHeight(24)
		--border:SetWidth(24)
no errors, it at least works for the two items i show cooldown bars for (holy shock and holy prism), and in fact, it's gotten rid of every lua error i had at login.

i'd back up your HolyTrinity.lua file first, your mileage may vary.
Report comment to moderator  
Reply With Quote
Unread 09-11-12, 05:30 PM  
enegence
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Originally Posted by PsiVen
Originally Posted by enegence
Is there an option to make the background for holy power completely transparent, so they don't show up as empty outlines when there isn't a holy power inside them?

On the older version, I had renamed the empty.tga file to something else, and it gave me the result I was looking for, but in the new version, doing that creates a large green rectangle.

Does anyone know of an elegant solution for this?

Thanks!
I looked into this and couldn't find an easy way to do it manually, so I added an option to the config.
Awesome! Thanks a ton!
Report comment to moderator  
Reply With Quote
Unread 09-09-12, 12:41 PM  
PsiVen
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 13
Uploads: 5
Originally Posted by enegence
Is there an option to make the background for holy power completely transparent, so they don't show up as empty outlines when there isn't a holy power inside them?

On the older version, I had renamed the empty.tga file to something else, and it gave me the result I was looking for, but in the new version, doing that creates a large green rectangle.

Does anyone know of an elegant solution for this?

Thanks!
I looked into this and couldn't find an easy way to do it manually, so I added an option to the config.
Report comment to moderator  
Reply With Quote
Unread 09-02-12, 01:40 PM  
enegence
A Kobold Labourer

Forum posts: 0
File comments: 5
Uploads: 0
Is there an option to make the background for holy power completely transparent, so they don't show up as empty outlines when there isn't a holy power inside them?

On the older version, I had renamed the empty.tga file to something else, and it gave me the result I was looking for, but in the new version, doing that creates a large green rectangle.

Does anyone know of an elegant solution for this?

Thanks!
Report comment to moderator  
Reply With Quote
Unread 12-03-11, 02:48 PM  
PsiVen
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 13
Uploads: 5
I'm pushing a minor update today, but the previous version still works with 4.3.
Report comment to moderator  
Reply With Quote
Unread 12-03-11, 09:49 AM  
Falleneu
A Deviate Faerie Dragon

Forum posts: 12
File comments: 14
Uploads: 0
Are you still planning to update this addon for 4.3?
Just asking so i know if i should look for a replacement.

(It does still work fine tho so no real rush just curious).
Report comment to moderator  
Reply With Quote
Unread 11-02-11, 11:27 PM  
PsiVen
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 13
Uploads: 5
Originally posted by Virro
Quick question, is it possible to do this:

Make the Holy Power meter appear ONLY when i have 1,2 or 3 Holy Power, and make it fade 100% out when my holy power is empty?
I think that should be possible. I'll put it on the list for 4.3.
Report comment to moderator  
Reply With Quote
Unread 10-23-11, 01:34 PM  
Virro
A Fallenroot Satyr

Forum posts: 20
File comments: 7
Uploads: 0
Quick question, is it possible to do this:

Make the Holy Power meter appear ONLY when i have 1,2 or 3 Holy Power, and make it fade 100% out when my holy power is empty?
Report comment to moderator  
Reply With Quote
Unread 05-12-11, 04:34 PM  
Morwo
A Murloc Raider
 
Morwo's Avatar
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 136
Uploads: 1
Hi there again,

so sad i post again, above my own post above my own post! I would like to see HolyTrinity shows up any yet selectable cooldown to be set to flicker (maybe in some adjustable transparency, with the design HolyTrinity now provides, full bar and symbol) if its ready to use again.

Thx
__________________
dont nerv me bro
"World of Warcraft only Twitter" @wow_morwo
Last edited by Morwo : 05-12-11 at 04:40 PM.
Report comment to moderator  
Reply With Quote
Unread 05-01-11, 08:27 AM  
Morwo
A Murloc Raider
 
Morwo's Avatar
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 136
Uploads: 1
Holy Power cooling down

Hi there,

i just found on PowerUp http://wowinterface.com/downloads/in...8-PowerUp.html, a similar design to holy trinity. while i won't change to PowerUp because of HolyTrinitys Cooldown bars, i wonder if u can implement the HolyPower cooling down out of fight, like in PowerUp.
__________________
dont nerv me bro
"World of Warcraft only Twitter" @wow_morwo
Report comment to moderator  
Reply With Quote
Unread 02-09-11, 03:33 PM  
Morwo
A Murloc Raider
 
Morwo's Avatar
AddOn Author - Click to view AddOns

Forum posts: 6
File comments: 136
Uploads: 1
Re: Please Add

And Rebuke plz, since 4.06 is out
__________________
dont nerv me bro
"World of Warcraft only Twitter" @wow_morwo
Report comment to moderator  
Reply With Quote
Unread 01-22-11, 04:21 PM  
Roguebullit
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Please Add

Psi love this AddOn and keep up the good work. Just wondering if you could add an Inquisition cool down to the list. Think it would really be helpful. Thanks.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: