Download
(15Kb)
Download
Updated: 12-04-10 09:56 AM
Pictures
File Info
Updated:12-04-10 09:56 AM
Created:12-13-09 09:19 AM
Downloads:3,670
Favorites:20
MD5:

cEasyHealer

Version: Cataclysm 7.2
by: corgrath [More]

An easy and userfriendly click2heal addon for World of Warcraft

I am happy that people like this addon, but please remember - this is my personal healing addon, don't expect me to actually code anything based on user comments :-)

Official site

http://code.google.com/p/ceasyhealer/

Short description

The idea of cEasyHealer is to have small boxes that represent the players in the raid. Each box contains the player's health which changes in both color and size based on their health. By clicking on the boxes, you cast customizable heals on the specific player.

Demonstration video

A brief demonstration video can be found here:





Key Features

* Click2Heal functionality
* Boxes are small and movable to anywhere on the screen
* Health-text changes in both color and size based on the unit's health
* If the unit is dead, or not existing the text becomes black
* If the target is out of range, you see their health but with black numbers instead
* Names are not visible (unless you hover the boxes) to minimize screen-clutter
* Different spells for normal, ctrl, shift and alt-clicking
* Boxborders are color coded according to the unit's class.
* Background are color coded according to the unit's debuffs

Changes

7.1 2010-10-17

* Minor code cleanup

7.2 2010-12-04

* Bugfix: You can now cast spells at login

7.0 2010-10-17

* Updated to work for World of Warcraft Cataclysm 4.0.1
Thanks to Humbedooh, Gnarfoz and nevcairiel at [email protected]

6.0 2009-12-12:

* Fixed Death Knight border colors
* Debuff backgrounds added

5.1 2009-12-21

* Boxes are no longer "on top".
* Boxes are no longer visible at start
* Minor bug fixes

5.0 2006-12-14

* First release of the new cEasyHealer.

Optional Files (0)


Post A Reply Comment Options
Unread 01-29-11, 06:47 AM  
Sinedeus
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
FYI - It is not usable with Clique or M/O macros. The U.I. does not recognize them as unit frames.
Report comment to moderator  
Reply With Quote
Unread 01-03-11, 10:27 PM  
azguz
A Murloc Raider

Forum posts: 8
File comments: 66
Uploads: 0
Great Addon.

Which file can I edit to make the boxes a tad bit bigger?
Report comment to moderator  
Reply With Quote
Unread 10-23-10, 05:17 PM  
Astrocanis
A Black Drake

Forum posts: 84
File comments: 28
Uploads: 0
Any chance this could be packaged as a .zip? It's blowing up Minion
Report comment to moderator  
Reply With Quote
Unread 10-18-10, 11:52 AM  
Moragony
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Code I added to Codeblue (cb_Functions_Menu.lua) to reposition boxes in a startup configuration (not tested yet in the new cata version):



function cEasyHealer_Function_Menu_ResetPositions()


-- cEasyHealer_Function_Menu_ResetPositions_Aider( "cEasyHealer_Frame_UnitTarget" );
-- cEasyHealer_Function_Menu_ResetPositions_Aider( "cEasyHealer_Frame_UnitFocus" );


-- Set raid 40 boxes for reset
for i = 1, 8, 1
do
for j = 1, 5, 1
do
k = j + 5*(i-1);

getglobal("cEasyHealer_Frame_UnitRaid" .. k):ClearAllPoints();
getglobal("cEasyHealer_Frame_UnitRaid" .. k):SetPoint( "LEFT",(48*i)+100,(j*48)-30 );
end
end

-- Set 5 man box positions for reset
getglobal("cEasyHealer_Frame_UnitParty" .. 1):SetPoint( "LEFT",370,-70);
getglobal("cEasyHealer_Frame_UnitParty" .. 2):SetPoint( "LEFT",370,-120);
getglobal("cEasyHealer_Frame_UnitParty" .. 3):SetPoint( "LEFT",420,-70);
getglobal("cEasyHealer_Frame_UnitParty" .. 4):SetPoint( "LEFT",420,-120);
getglobal("cEasyHealer_Frame_UnitPlayer"):SetPoint( "LEFT",470,-95);



-- getglobal("cEasyHealer_Frame_UnitPlayer"):SetPoint( "LEFT",300,500);
-- getglobal("cEasyHealer_Frame_UnitTarget"):SetPoint( "LEFT",300,500 );
-- getglobal("cEasyHealer_Frame_UnitFocus"):SetPoint( "LEFT",300,500);

-- Show 25 man boxes
CEASYHEALER_WHOTOSHOW.PLAYER = true;
CEASYHEALER_WHOTOSHOW.TARGET = true;
CEASYHEALER_WHOTOSHOW.FOCUS = true;
CEASYHEALER_WHOTOSHOW.PARTY = true;
CEASYHEALER_WHOTOSHOW.RAID1 = true;
CEASYHEALER_WHOTOSHOW.RAID2 = true;
CEASYHEALER_WHOTOSHOW.RAID3 = true;
CEASYHEALER_WHOTOSHOW.RAID4 = true;
CEASYHEALER_WHOTOSHOW.RAID5 = true;
CEASYHEALER_WHOTOSHOW.RAID6 = false;
CEASYHEALER_WHOTOSHOW.RAID7 = false;
CEASYHEALER_WHOTOSHOW.RAID8 = false;

EasyHealer_WhoToShowButton_Player:SetChecked( CEASYHEALER_WHOTOSHOW.PLAYER );
EasyHealer_WhoToShowButton_Target:SetChecked( CEASYHEALER_WHOTOSHOW.TARGET );
EasyHealer_WhoToShowButton_Focus:SetChecked( CEASYHEALER_WHOTOSHOW.FOCUS );
EasyHealer_WhoToShowButton_Party:SetChecked( CEASYHEALER_WHOTOSHOW.PARTY );
EasyHealer_WhoToShowButton_Raid1:SetChecked( CEASYHEALER_WHOTOSHOW.RAID1 );
EasyHealer_WhoToShowButton_Raid2:SetChecked( CEASYHEALER_WHOTOSHOW.RAID2 );
EasyHealer_WhoToShowButton_Raid3:SetChecked( CEASYHEALER_WHOTOSHOW.RAID3 );
EasyHealer_WhoToShowButton_Raid4:SetChecked( CEASYHEALER_WHOTOSHOW.RAID4 );
EasyHealer_WhoToShowButton_Raid5:SetChecked( CEASYHEALER_WHOTOSHOW.RAID5 );
EasyHealer_WhoToShowButton_Raid6:SetChecked( CEASYHEALER_WHOTOSHOW.RAID6 );
EasyHealer_WhoToShowButton_Raid7:SetChecked( CEASYHEALER_WHOTOSHOW.RAID7 );
EasyHealer_WhoToShowButton_Raid8:SetChecked( CEASYHEALER_WHOTOSHOW.RAID8 );

cEasyHealer_Function_WhoToShow_Update();

ChatFrame1:AddMessage( "Boxes reset to starting positions." );

end

function cEasyHealer_Function_Menu_ResetPositions_Aider( object_name )

getglobal(object_name):ClearAllPoints();
getglobal(object_name):SetPoint( "CENTER" );
getglobal(object_name):SetPoint( "LEFT",20,200 );
end
Report comment to moderator  
Reply With Quote
Unread 01-22-10, 12:44 PM  
Woda
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Good addon but just noticed that the range on the spells is shorter than when cast without the boxes
I have a 40 yd range on my shammy heal spells and the default for cEasyhealer seems to be 30yds
Any plans to alter this?
Report comment to moderator  
Reply With Quote
Unread 01-16-10, 02:54 PM  
Shadowcall
A Cyclonian
 
Shadowcall's Avatar
AddOn Author - Click to view AddOns

Forum posts: 44
File comments: 58
Uploads: 1
Great addon, exactly what i need, but can you add 3 more feature?
First: an option to hide the boxes if the unit dosen't exist.
Second: can you make some layouts, for party or raid, and make the boxes to clamp on eachother?
Third: ButtonFacade support
I think the second is the most important because is a bit hard to set up the boxes for a 25 man raid
Report comment to moderator  
Reply With Quote
Unread 12-15-09, 01:58 PM  
Widersinnes
A Kobold Labourer

Forum posts: 0
File comments: 51
Uploads: 0
Originally posted by corgrath
No left/right key since that's nothing I need, and concerning clique - i have no clue what it does
Clique is a mod that adds click casting to just about ANY user frame (unless that ui traps mouse clicks). It can maintain a set of helpful, harmful, default, and OOC click casting actions per spec and swap them out when you change spec (ex: My discipline priest has a vastly different set of click casting actions than when in shadow spec).

Since it works with any unit frame (its most commonly paired with grid) it would be ideal for this mod. It also allows more click casting combos with various buttons.

http://www.wowinterface.com/download...08-Clique.html

Clique with your basic unit frames seems like a perfect match.
Report comment to moderator  
Reply With Quote
Unread 12-14-09, 01:48 PM  
corgrath
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 1
Uploads: 1
No left/right key since that's nothing I need, and concerning clique - i have no clue what it does
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 03:58 PM  
Cralor
Mmm... cookies!!!
 
Cralor's Avatar
AddOn Author - Click to view AddOns

Forum posts: 772
File comments: 313
Uploads: 5
Originally posted by Widersinnes
Noticed it has some rudimentary click casting. Can this work with clique? I would prefer using something like this with Clique as it has already solved all my click casting nightmares.
I haven't tried it yet, but maybe if you leave the boxes blank Clique will work? If not, I'd like to see this as well. An option to disable the click-casting features.
__________________
Never be satisfied with satisfactory.
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 03:27 PM  
Unkn
Premium Member
 
Unkn's Avatar
AddOn Author - Click to view AddOns

Forum posts: 258
File comments: 165
Uploads: 2
Wow sweet, all the info i really care about and none of the fluff. Thanks
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 02:52 PM  
Vidboy
A Kobold Labourer

Forum posts: 0
File comments: 95
Uploads: 0
Does it have both left and right click functions? been looking for a simple healing addon.
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 02:26 PM  
Widersinnes
A Kobold Labourer

Forum posts: 0
File comments: 51
Uploads: 0
Noticed it has some rudimentary click casting. Can this work with clique? I would prefer using something like this with Clique as it has already solved all my click casting nightmares.
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 01:25 PM  
Cralor
Mmm... cookies!!!
 
Cralor's Avatar
AddOn Author - Click to view AddOns

Forum posts: 772
File comments: 313
Uploads: 5
I really like this idea. I've been thinking about trying Grid but this is all the essentials I need. I'm surprised I did not think of something like this when I was looking for a healing helper.
__________________
Never be satisfied with satisfactory.
Report comment to moderator  
Reply With Quote
Unread 12-13-09, 01:21 PM  
Ferous
Sheer Sense of Doom
AddOn Author - Click to view AddOns

Forum posts: 863
File comments: 563
Uploads: 10
This looks very awesome!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: