Thread Tools Display Modes
06-01-06, 02:51 PM   #1
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Shag's HealSync

This is the official discussion thread for HealSync
  Reply With Quote
06-01-06, 04:39 PM   #2
JoshBorke
A Chromatic Dragonspawn
 
JoshBorke's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 185
great mod Shag :-)

keep up the good work.
--edit--
ever considered having the option to lock targets?
So you can track heals on more than just your current target?
  Reply With Quote
06-01-06, 05:51 PM   #3
Saucepan
A Murloc Raider
Join Date: Jun 2006
Posts: 4
having difficulty getting it to work

I installed all the folders which came with the mod, but i have having dificulty getting it to work like the screen shot. I get two bars on my screen, one says "HealSync target" and the other "HealSync player". When i cast a heal on a raid member, i can sorta see a progress bar behind the bar that says "HealSync target" on it, but it is in the background and barely noticable. When I cast a heal while another member casts a heal I still only see one progress bar, which is still almost impossible to even see in the background. Just wondering if you could help me out with this
  Reply With Quote
06-01-06, 08:49 PM   #4
Alastar
A Kobold Labourer
Join Date: Jun 2006
Posts: 1
thumbs up

If you do decide to add an options menu in the future I'd like the ability to monitor only specific classes ie Priests healing on a target. Also would like to be able to move the enable/disable button.

Very useful mod for healer class leaders!
  Reply With Quote
06-02-06, 01:07 AM   #5
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Originally Posted by Saucepan
I installed all the folders which came with the mod, but i have having dificulty getting it to work like the screen shot. I get two bars on my screen, one says "HealSync target" and the other "HealSync player". When i cast a heal on a raid member, i can sorta see a progress bar behind the bar that says "HealSync target" on it, but it is in the background and barely noticable. When I cast a heal while another member casts a heal I still only see one progress bar, which is still almost impossible to even see in the background.
The blue ring button is a toggle button. You press it once, you go into the 'edit' mode, then you can move the frames and then press the button again to hide the black frames.

When you're in a raid, you won't see healing spells cast by players who are in the same group as you due to combatlog limitations, unless the other healers use HealSync, too. I don't know if it works in normal parties though.
  Reply With Quote
06-02-06, 03:21 AM   #6
Sargträger
A Kobold Labourer
Join Date: Jun 2006
Posts: 1
Smile

Hi, this is a really nice mob, but i've got problems to search my healing time in such short time.
Is it possible to set my bar in a different color and always in 1st position?

Thanks
Sargträger, Blackmoore
  Reply With Quote
06-02-06, 03:37 AM   #7
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Originally Posted by Sargträger
... i've got problems to search my healing time in such short time.
In 0.1.4.0, your castingbar will be colored red

Last edited by wereHamster : 06-02-06 at 09:07 AM.
  Reply With Quote
06-03-06, 06:38 AM   #8
Tazmanyak
An Aku'mai Servant
Join Date: Apr 2005
Posts: 34
1.4.0

added french translation
Cool ^^
So i can test it without having 2 weeks of work lol

Thank you, i will give you any drawbak i can

O------------------------------------------------------O

Next, as i am not a programmer, but just a hard user, i cant give you code for the mouseover ...
I would really like your addon to work with and for passive healing, without targeting ....

Here is an addon i use to announce cast, and it works with mouseover ... ie i send my Spell target name in chat.
This addon is Ep_AnnounceCast.Easy Priest : AnnounceCast

In lua i found:

self:RegisterEvent("UPDATE_MOUSEOVER_UNIT", "EventMouseOver")
if not self.SpellData.target then
if UnitName("target") and UnitIsFriend("player", "target") and
((self.SpellData.name == EP_ANNOUNCECAST.SHIELD and (UnitInRaid('target') or UnitInParty('target')))
or (self.SpellData.name ~= EP_ANNOUNCECAST.SHIELD)) then
self.SpellData.target = "target"
else
self.SpellData.target = "mouseover"
end
end

if self.SpellData.target ~= "mouseover" then
self.SpellData.targetName = UnitName(self.SpellData.target)
end
And
function EP_AnnounceCast:EventMouseOver()
if SpellIsTargeting() then
self.SpellData.targetName = UnitName("mouseover")
end
end
I hope this will help you ... if it doesn't ... bah i will try to find something else ^^
  Reply With Quote
06-08-06, 09:42 AM   #9
Blackjack
A Kobold Labourer
Join Date: Jun 2006
Posts: 1
Hello. I was wondering how i could change the castingbars to grow upwards?
Atleast it seems simple but i dont have that much experience on these things

It must be in the IFrameManager.lua i suppose?

Good addon, i find it very usefull when tryeing to land those slow druid heals
  Reply With Quote
06-08-06, 10:24 AM   #10
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Originally Posted by Blackjack
Hello. I was wondering how i could change the castingbars to grow upwards?
Open HealSync.lua, around line 230, you'll find this:

Code:
frame:ClearAllPoints()
if (parent == dockFrame) then
    frame:SetPoint("TOP", parent, "TOP", 0, 0)
else
    frame:SetPoint("TOP", parent, "BOTTOM", 0, 2)
end
replace "TOP" with "BOTTOM" and vice versa...
  Reply With Quote
06-15-06, 03:37 PM   #11
kentarre
A Kobold Labourer
Join Date: Jun 2006
Posts: 1
Very nice mod in my testing so far! Awesome work. Some questions

- Is it possible to get detection for healers in the same party as you? I noticed it only detected heals from those outside your party during a raid.

- Possible to track multiple targets?
  Reply With Quote
06-15-06, 04:37 PM   #12
JoshBorke
A Chromatic Dragonspawn
 
JoshBorke's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 185
can't track healers in your party due to the way spell events are fired
  Reply With Quote
06-15-06, 05:06 PM   #13
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Originally Posted by kentarre
- Possible to track multiple targets?
It tracks all possible targets, but displays only the heals to your current target.
  Reply With Quote
08-24-06, 04:39 AM   #14
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
I just updated HealSync, the new version is in the ace svn repo. I'll let the folks on CG beta-test it and once the major bugs are fixed (not that I expect any) I'll upload it here to WoWI.

If you can't wait, get it from svn, you'll need these two addons:

http://svn.wowace.com/root/trunk/HealSync
http://svn.wowace.com/root/trunk/IFrameManager
  Reply With Quote
08-26-06, 03:15 AM   #15
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Now that the ace svn is for developers only and closed to the public, I've uploaded the newest version here.

enjoy
  Reply With Quote
08-30-06, 04:45 PM   #16
Hilly
A Deviate Faerie Dragon
Join Date: Apr 2006
Posts: 19
You posted above that it tracks all heals. Does it allow you to see heals on players other than your current target? It would have very limited usefulness if all you can see is your target.
  Reply With Quote
08-31-06, 03:37 AM   #17
wereHamster
A Black Drake
 
wereHamster's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 80
Originally Posted by Hilly
You posted above that it tracks all heals. Does it allow you to see heals on players other than your current target? It would have very limited usefulness if all you can see is your target.
http://www.wowinterface.com/forums/s...5&postcount=13

This addon was not designed for click-casters..
  Reply With Quote
08-31-06, 08:39 AM   #18
Hilly
A Deviate Faerie Dragon
Join Date: Apr 2006
Posts: 19
I'm actually not a click caster. But lets say I have MT B targeted. I notice MT A is getting beat on. Right now I would have to click back and forth between them to track who is healing them and if I need to heal them.

Also what about mods like Groupbuttons, Benecast, etc. That's not click casting but it is using the script to specify the target.

It's your mod, so it's cool if you disagree with me. I'm just suggestion it might be an option people would like to see.
  Reply With Quote
08-31-06, 09:53 AM   #19
Keriana
A Murloc Raider
Join Date: Aug 2006
Posts: 6
This is something I'd *really* like as well. I need the ability to watch multiple targets and to ensure they're getting healing. If the information is already being collected, then adding a display seems like a natural next step. Just need to be able to have a window and set it to a Target (or targets) to watch.

We even have non-healers in the guild that wouuld like to be able to watch this.

Would love it if you could add it to the mod.

As an interesting aside - while I don't generally use my mouse to heal, I have been since installing this mod simply so that I could semi-watch two targets at once.

Would also love the ability to scale the displays, whether or not you add in watching multiple targets.

Thanks in advance.
  Reply With Quote
08-31-06, 11:02 AM   #20
JoshBorke
A Chromatic Dragonspawn
 
JoshBorke's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 185
I'd like to take a moment to plug my addon (with wereHamster's permission) called HealWatch http://www.wowinterface.com/download...php?s=&id=4732
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » Released AddOns » Shag's HealSync


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off