Download
(64Kb)
Download
Updated: 11-07-10 02:18 PM
Pictures
File Info
Updated:11-07-10 02:18 PM
Created:unknown
Downloads:92,972
Favorites:158
MD5:

Hadar's Holy Hope  Popular! (More than 5000 hits)

Version: 3.0 Beta
by: Hadar [More]

This is a remake of the original Holy Hope 3 mod. It has been completely remade from the ground up. Certain functionality has not been put back in such as the mount buttons and the Reckoning functionality. All the basics are there and working plus a few new buttons here and there. It is not localized to other languages other than English.

To access the settings window, type "/hhh"

Please note, this is a paladin only mod. Functionality with other classes is untested. Please disable it for your other non-paladin characters in the AddOns screen.


Special thanks to the original author Battochon <The Horde> of Ysondre (EU) for the fine mod.

************************
******* ATTENTION *******
************************
As of this latest release (3.0 beta) it is not my intent to continue updating this mod. If you wish to remake it, feel free to do what you will with it.

ver 3.0 beta
* Fixed to work with patch 4.0.1 and the upcoming Cataclysm expansion.
* Due to the significant amount of changes to paladin spells localization is not done and this will only work with the English game client.
* Very limited in functionality. It is not my intent to continue updating this mod.

ver. 2.0 Beta 4
* Fixed German Localization. Thanks to those that helped with it.

ver. 2.0 Beta 3 (10-29-2008)
* Fleshed out the Spec circle a bit more.
* Update to the localization files.
* Fixed issue with the Redemption button on/off toggle.

ver. 2.0 Beta 2 (10-26-2008)
* Added controls for the DPS circle in the options panel.
* Fixed issue with settings saving properly.
* Added a few Localization files for French, German and Russian. (thanks to those that contributed these!)

ver. 2.0 Beta 1 (10-20-2008)
* Updated to work with WoW 3.0.2 patch.
* Added a "DPS" circle mainly aimed for a Retribution paladin to use. (Currently there are no controls for this in the options. Sorry if it gets in the way.)
* The center buttons of the DPS and Seal circles can be right clicked to cycle between the three Judgements (Light, Wisdom, Justice).

ver. 1.24 (09-01-2008)
* Added in Russian localization.

ver. 1.23 (07-04-2008)
* Fixed problem with certain macro text as a button action. Certain macro text was being pared incorrectly.
* The format of HHH_CIRCLE_SPELL_BUTTONS inside Hadar_HolyHope_Spell_Defs.lua has changed slightly. If you made changes, please check your changes against the new format.

ver. 1.22 (06-05-2008)
* Fixed issue with circles not scaling properly.

ver. 1.21 (05-17-2008)
* Fixed the bug with Holy Shield and Repentance buttons casting the wrong spell.
* Added Key Bindings back in.

ver. 1.2 (05-16-2008)
* Major revision of the code structure.
* Removed most of the custom artwork for the buttons as they are no longer necessary. This will make it easier to add spells in the future!
* Added Consecration button to the "Spec" circle.
* Fixed what I think has been a bug in the code for Seal of Blood and Seal of Command overlapping one another. (Sorry about that Horde pallys)
* Issues with window placement resetting itself to default should be resolved. If not, please let me know.
* A new file named "Hadar_HolyHope_Spell_Defs.lua" now holds the definitions for the spell buttons and their layout. If you wish to customize the layout of buttons, check into this file for some minor details. EDIT THIS FILE AT YOUR OWN RISK!

ver. 1.1a (04-12-2008)
* Minor revision to fix an error on first load when the player doesn't have the Redemption spell.

ver. 1.1 (04-06-2008)
* Added French localization file.
* Right clicking the Blessings circle will now cast your Hearthstone as in the original version.

ver. 1.0 (03-25-2008)
* Jumped to a new version number since I'm out of the "beta" phase.
* Updated for 2.4 patch.
* Moved the configuration to the new Interface Panel in the in-game options menus.
* /hhh still takes you to the options.

ver. 0.16 (11-12-2007)
* Updated for patch 2.3
* Fixed some errors upon first use due to missing saved variables.
Post A Reply Comment Options
Unread 11-09-10, 12:35 AM  
shane3547
A Kobold Labourer
 
shane3547's Avatar

Forum posts: 0
File comments: 55
Uploads: 0
Sweet, thank you very much.. Awesome MOD and now I have the knowledge to give a few little extra's of my own to it

Thanks again, sorry to see you go

Originally posted by Hadar
You'll have to add Word of Glory to the "Localization-EN.lua" file to the HHH_SPELL_TABLE.

It should look like this:
---------
HHH_SPELL_TABLE = {
wordofglory = "Word of Glory", --- add this line
judgement = "Judgement",

----------

This should make it work for the rest of the changes you made. You can also ignore using the HHH_SPELL_TABLE[] and just put in the actual spell name in your code as well ("Word of Glory"). That table just helps with localization. That'd look like this:

[0] = { "*type*:spell", "*spell*:Word of Glory" }
Report comment to moderator  
Reply With Quote
Unread 11-09-10, 12:11 AM  
Tithulta
A Black Drake
 
Tithulta's Avatar
AddOn Author - Click to view AddOns

Forum posts: 80
File comments: 38
Uploads: 1
There are now 2 HHH's

ATM there are TWO Hadar's Holy Hope......Hadar's and my Hadar's Holy Hope Continued.

Hadar was gracious enough to update the code and I have taken the addon over. You will find many button changes in my version. Currently I'm working on german localization with plans for updating the others.

http://www.wowinterface.com/download...Continued.html
__________________
Report comment to moderator  
Reply With Quote
Unread 11-08-10, 12:52 PM  
Hadar
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 52
Uploads: 2
Originally posted by shane3547
Ok, i'm trying to change the following line from Consecration to Word of Glory

So from this,
----------------------------
{ angle = 292.5, radius = 46,
states = {
[0] = { "*type*:spell", "*spell*:"..HHH_SPELL_TABLE["consecration"] }
}
----------------------------
to this
----------------------------
{ angle = 292.5, radius = 46,
states = {
[0] = { "*type*:spell", "*spell*:"..HHH_SPELL_TABLE["wordofglory"] }
}
----------------------------

But every time I load up it gives me the following error

Error Message: ...\AddOns\Hadar_HolyHope\Hadar_HolyHope_Spell_Defs.lua line 144:
attempt to concatenate field 'wordofglory' (a nil value)

.....

Someone please help,
Thanks in advance
You'll have to add Word of Glory to the "Localization-EN.lua" file to the HHH_SPELL_TABLE.

It should look like this:
---------
HHH_SPELL_TABLE = {
wordofglory = "Word of Glory", --- add this line
judgement = "Judgement",

----------

This should make it work for the rest of the changes you made. You can also ignore using the HHH_SPELL_TABLE[] and just put in the actual spell name in your code as well ("Word of Glory"). That table just helps with localization. That'd look like this:

[0] = { "*type*:spell", "*spell*:Word of Glory" }
Report comment to moderator  
Reply With Quote
Unread 11-08-10, 02:19 AM  
shane3547
A Kobold Labourer
 
shane3547's Avatar

Forum posts: 0
File comments: 55
Uploads: 0
Ok, i'm trying to change the following line from Consecration to Word of Glory

So from this,
----------------------------
{ angle = 292.5, radius = 46,
states = {
[0] = { "*type*:spell", "*spell*:"..HHH_SPELL_TABLE["consecration"] }
}
----------------------------
to this
----------------------------
{ angle = 292.5, radius = 46,
states = {
[0] = { "*type*:spell", "*spell*:"..HHH_SPELL_TABLE["wordofglory"] }
}
----------------------------

But every time I load up it gives me the following error

Error Message: ...\AddOns\Hadar_HolyHope\Hadar_HolyHope_Spell_Defs.lua line 144:
attempt to concatenate field 'wordofglory' (a nil value)

.....

Someone please help,
Thanks in advance
Report comment to moderator  
Reply With Quote
Unread 11-07-10, 09:36 PM  
Tithulta
A Black Drake
 
Tithulta's Avatar
AddOn Author - Click to view AddOns

Forum posts: 80
File comments: 38
Uploads: 1
Re: Re: Re: 3.0 beta release

Originally posted by Izlandi
Thank you for taking this over from Hadar. I wish I knew coding so I could help you. I hope someone does! Good luck with finalizing the addon!
OK its uploaded as Hadar's Holy Hope Continued. ATM it uploaded in the wrong category....thought i was loading it into class specific.....well i did, but in the compilation area.

PM'd Cairenn should be moved soonish to the correct category.

Thanks again for fixing the errors Hadar it enabled me to implement the changes to the buttons. I had made a workable one last night based upon the old code and i was getting 4 errors dealing with scaling and tooltips. All good with the newer code. THANK YOU.
__________________
Report comment to moderator  
Reply With Quote
Unread 11-07-10, 08:22 PM  
Izlandi
A Defias Bandit

Forum posts: 2
File comments: 14
Uploads: 0
Re: Re: 3.0 beta release

Originally posted by Tithulta
Thanks Hadar i'll take a look an see what you've done and go from there. This addon has been staple for me forever it seems like. When 4.0.1 completely broke it I could barely play my pally's without it(except for healing since HHH wasn't really geared to healing). Im not the coder you have been and I want to say Thank you for many years of using a GREAT addon.


Edit: Got some editions coming out soon. Think everyone will like the addition tuning. Just hoping i can get it done without breaking something. Not that great at fixing errors.
Thank you for taking this over from Hadar. I wish I knew coding so I could help you. I hope someone does! Good luck with finalizing the addon!
Report comment to moderator  
Reply With Quote
Unread 11-07-10, 07:04 PM  
Prynne
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Re: 3.0 beta release

Originally posted by Hadar
I've updated the mod to version 3.0 beta. This will be the final release of this mod by me. It should be working in a limited fashion. The localization files are not updated so this will only work with the English client. If you wish to take over and make the mod worth using again, please feel free to do so.
Thank you, Hadar!!!!!
Report comment to moderator  
Reply With Quote
Unread 11-07-10, 03:09 PM  
Tithulta
A Black Drake
 
Tithulta's Avatar
AddOn Author - Click to view AddOns

Forum posts: 80
File comments: 38
Uploads: 1
Re: 3.0 beta release

Originally posted by Hadar
I've updated the mod to version 3.0 beta. This will be the final release of this mod by me. It should be working in a limited fashion. The localization files are not updated so this will only work with the English client. If you wish to take over and make the mod worth using again, please feel free to do so.
Thanks Hadar i'll take a look an see what you've done and go from there. This addon has been staple for me forever it seems like. When 4.0.1 completely broke it I could barely play my pally's without it(except for healing since HHH wasn't really geared to healing). Im not the coder you have been and I want to say Thank you for many years of using a GREAT addon.


Edit: Got some editions coming out soon. Think everyone will like the addition tuning. Just hoping i can get it done without breaking something. Not that great at fixing errors.
__________________
Last edited by Tithulta : 11-07-10 at 06:28 PM.
Report comment to moderator  
Reply With Quote
Unread 11-07-10, 02:21 PM  
Hadar
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 52
Uploads: 2
3.0 beta release

I've updated the mod to version 3.0 beta. This will be the final release of this mod by me. It should be working in a limited fashion. The localization files are not updated so this will only work with the English client. If you wish to take over and make the mod worth using again, please feel free to do so.
Report comment to moderator  
Reply With Quote
Unread 11-07-10, 11:33 AM  
Tithulta
A Black Drake
 
Tithulta's Avatar
AddOn Author - Click to view AddOns

Forum posts: 80
File comments: 38
Uploads: 1
Intent to fix HHH to Cata working status

I'm working on it, but im not a coder so it'll take some time lots a unneeded code im thinking with all the pally class changes. So far what i've got is workable, just not customizable. Hadar's old framework isn't working either by my tinkering or just general blizzard changes broke it. Right now I'm working on just getting all the buttons set and working. Some changes im working on are the center buttons, since we no longer have JoW, JoL, or JoJ. Spec center I'm wanting to change to each spec's DS,SoR. and WoG. I realize we have some other abilities that make use of Holypower, but we'll work that out later.
__________________
Report comment to moderator  
Reply With Quote
Unread 11-06-10, 08:49 AM  
Prynne
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Wholly Hopeless!!!!

Hadar,

I actually registered on this site just so I could tell you how much I miss Holy Hope and that I really hope you update it. Your addon taught me how to play my pally when I was new to the game and it's hands down the most intuitive interface I've used. Like others have said before me, I'm no programmer. I'd just break it worse if I tried to fix it. Thanks for all your hard work, both in the past and yet to come.

Prynne
Technical Writer and Gamer Since the Days of Funny Dice and Graph Paper
Report comment to moderator  
Reply With Quote
Unread 10-26-10, 09:04 PM  
geospawn
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Hadar .. go for it man .. upload what you have .. i tried to edit it so i can get by .. but you're the master

keep up the good work

Originally posted by madh632
as long as it will work i think we'd all be happy... this is one of my favorite mods
Report comment to moderator  
Reply With Quote
Unread 10-23-10, 09:34 AM  
madh632
A Murloc Raider
 
madh632's Avatar

Forum posts: 5
File comments: 1
Uploads: 0
Originally posted by Hadar
I have a working version right now, but it's really not much more than me fixing the glaring errors that have popped up for me. I can post it if you really want that, but it's still very untested.
as long as it will work i think we'd all be happy... this is one of my favorite mods
Report comment to moderator  
Reply With Quote
Unread 10-19-10, 12:24 PM  
Hadar
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 52
Uploads: 2
I have a working version right now, but it's really not much more than me fixing the glaring errors that have popped up for me. I can post it if you really want that, but it's still very untested.

At this point I'm not happy with the mod and it needs a major overhaul which is something I'm not prepared to do right now. If someone wants to take it and run, by all means go for it. Gut it and make it better! It was my first attempt at using Blizzards secure button templates and it is horrible now that I look at it again.

Again, I'll see about posting up a working version "soon", but if you want it to actually look good or customize any of the buttons, you'll have to do that on your own.
Report comment to moderator  
Reply With Quote
Unread 10-17-10, 09:40 PM  
Izlandi
A Defias Bandit

Forum posts: 2
File comments: 14
Uploads: 0
I dont know jack about making a mod, but i have never found a mod like this one. If Hadar is unwilling to continue working on it then is there anyone else that has the knowhow? I know the post before me talked about editing some info but I think there is more to it now especially with the new Holy Power thing.

I really hope someone picks this up.
Last edited by Izlandi : 10-17-10 at 09:41 PM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: