It is currently Thu Sep 09, 2010 12:26 am

All times are UTC - 8 hours [ DST ]


Sponsors:




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 2180 posts ]  Go to page Previous  1 ... 105, 106, 107, 108, 109
Author Message
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 10:34 am 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
grewl wrote:
think this question might be answered somewhere else but still i ask here
i have set up my panel 1 and want same settings on a new panel is there a smooth way to make that ? cause i want group 6,,7,8 in another place
thanks again for a great addon!!!


Hi,
yes of course: Go to Options=>Panels, klick on panel 1, select the sub-menus on the right one by one and klick "Apply to all".


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 11:13 am 
Offline
Healer-At-Arms

Joined: Sat Jan 09, 2010 1:08 am
Posts: 20
doesnt that effect all panels then?
i just want to effect panel 7 for example and not mt:s etc?


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 11:41 am 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
grewl wrote:
doesnt that effect all panels then?
i just want to effect panel 7 for example and not mt:s etc?

Yes, it will copy settings to all panels. Unfortunately it's not possible to copy from/to one.
I suggest you check what settings will be made in each sub-panel and decide if it's easier to set it up manually or via apply to all. E.g. HoT icon settings will rarely be different from panel to panel. Same for tooltip and eventually text settings.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 12:34 pm 
Offline
Healer-At-Arms

Joined: Sat Jan 09, 2010 1:08 am
Posts: 20
kk have to do it then =)
only effects av and wg so its not that big deal but thanks for answer


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 1:08 pm 
Offline
Sapling
User avatar

Joined: Sun Jan 10, 2010 12:47 pm
Posts: 6
Hello everyone! Disc Priest lurker type here, I've followed various addons for a while (I've healed 10s and 25s with all sorts of UIs from vanilla to bizarre), and I have two major questions about Vuhdo.

1. Where in the LUA code do you define the colors for the 'float' option? I know you said earlier that it might happen, but I'm not at all averse to getting my hands dirty and changing colors myself every time it updates, and I think it's this particular snippet of code:
Quote:
local function VUHDO_getLifeLeftColor(aPercent)
tFactor = aPercent * 0.01;
tFactor = tFactor * tFactor;

if (tFactor > 0.5) then
tR = 2 - 2 * tFactor;
tG = 1;
else
tR = 1;
tG = tFactor * 2;
end

tColor["R"], tColor["G"], tColor["B"] = tR, tG, 0;
return tColor;

If I'm way out of line (I just want it to go from purple to pink as people get lower o_O) lemme know!

2. Is there any way to apply an approximated Power Word: Shield amount to the bar? I know grid has an outline method where it guesses the amount a PW:S might absorb, and applies that to a border. Is there any such similar function for Vuhdo?

_________________
Watashi no pantsu de neko ga imasu yo.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 1:14 pm 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
Contexi wrote:
Hello everyone! Disc Priest lurker type here, I've followed various addons for a while (I've healed 10s and 25s with all sorts of UIs from vanilla to bizarre), and I have two major questions about Vuhdo.

1. Where in the LUA code do you define the colors for the 'float' option? I know you said earlier that it might happen, but I'm not at all averse to getting my hands dirty and changing colors myself every time it updates, and I think it's this particular snippet of code:
Quote:
local function VUHDO_getLifeLeftColor(aPercent)
tFactor = aPercent * 0.01;
tFactor = tFactor * tFactor;

if (tFactor > 0.5) then
tR = 2 - 2 * tFactor;
tG = 1;
else
tR = 1;
tG = tFactor * 2;
end

tColor["R"], tColor["G"], tColor["B"] = tR, tG, 0;
return tColor;

If I'm way out of line (I just want it to go from purple to pink as people get lower o_O) lemme know!

2. Is there any way to apply an approximated Power Word: Shield amount to the bar? I know grid has an outline method where it guesses the amount a PW:S might absorb, and applies that to a border. Is there any such similar function for Vuhdo?

1. Right place.
2. No, I'm sorry. Might have a look at this. How's this plugin named?


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 1:22 pm 
Offline
Sapling
User avatar

Joined: Sun Jan 10, 2010 12:47 pm
Posts: 6
1. Awesome. Your support for this addon is admirable, that was really fast! :D And... It's the R G and B that I can replace with custom colors (do I hafta define those or...) in order to change how it works? Just double checking, never really worked with LUA. :mrgreen:

2. This is the addon I was referring to. I don't know how feasible it would be to add something so... 'iffy', but as a disc priest I do appreciate such things very much. <3 Edit: In case the link is broken, it's called GridStatusShield. :D

_________________
Watashi no pantsu de neko ga imasu yo.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 1:39 pm 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
Contexi wrote:
1. Awesome. Your support for this addon is admirable, that was really fast! :D And... It's the R G and B that I can replace with custom colors (do I hafta define those or...) in order to change how it works? Just double checking, never really worked with LUA. :mrgreen:

2. This is the addon I was referring to. I don't know how feasible it would be to add something so... 'iffy', but as a disc priest I do appreciate such things very much. <3 Edit: In case the link is broken, it's called GridStatusShield. :D


Thank you, I'm going to analyze this plugin. If you never worked with lua I'd like to disencourage from changing that code :) Changing from green to red is a proprietary algorithm that can't be replaced 1:1 to work with custom colors.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Sun Jan 10, 2010 1:59 pm 
Offline
Sapling
User avatar

Joined: Sun Jan 10, 2010 12:47 pm
Posts: 6
1. Awww, fair enough. :mrgreen: I like asking questions first and breaking things later if possible, saves a lot of trouble when other people know the answers! I wonder if I can use that timer bar's algorithm for custom colors... :? Ahem. I think I'll just use red and green for now. 8-)

2. Yaaay. If it proves something you could integrate, I will be very happy! If not, heh, I understand.

You've put a lot of time and energy into this addon and it really shows. The customization is probably the best (and easiest integrated) I've seen for raidframes. Thank you for this awesome tool. <3

_________________
Watashi no pantsu de neko ga imasu yo.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Mon Jan 11, 2010 1:01 pm 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
Contexi wrote:
1. Awww, fair enough. :mrgreen: I like asking questions first and breaking things later if possible, saves a lot of trouble when other people know the answers! I wonder if I can use that timer bar's algorithm for custom colors... :? Ahem. I think I'll just use red and green for now. 8-)

2. Yaaay. If it proves something you could integrate, I will be very happy! If not, heh, I understand.

You've put a lot of time and energy into this addon and it really shows. The customization is probably the best (and easiest integrated) I've seen for raidframes. Thank you for this awesome tool. <3


Hi Contexi,
I checked this and got to say the plugin for shields is very interesting but needs far more time for me to analyze. May take a while until I can make use of this I think.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Mon Jan 11, 2010 1:11 pm 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
Hi,
there's a post on official US-American WoW UI/Interface forum which is driving me nuts. I can't post myself there because I have an european (german) account. PLEASE someone tell those guys, that they can change spell assignments due to specc in options=>spells=>misc (save assignments and check "Spec 1/2"). and that I'm always glad to answer all question here, on curse.com and also on wowinterface.com:

http://forums.worldofwarcraft.com/thread.html?topicId=22418705884&sid=1

Thank you,
Iza


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Mon Jan 11, 2010 1:29 pm 
Offline
Sapling
User avatar

Joined: Sun Jan 10, 2010 12:47 pm
Posts: 6
Heh, no worries. I know how development goes, and it does only affect a small subset of healers. Thanks for looking into it, and replied on that thread for you. :mrgreen:

_________________
Watashi no pantsu de neko ga imasu yo.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Mon Jan 11, 2010 2:11 pm 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
Contexi wrote:
Heh, no worries. I know how development goes, and it does only affect a small subset of healers. Thanks for looking into it, and replied on that thread for you. :mrgreen:


Thanks a lot mate.


Top
 Profile  
 
 Post subject: Re: VuhDo - Adding Buffs for Buff bar
PostPosted: Tue Jan 12, 2010 1:20 am 
Offline
Healer-At-Arms

Joined: Tue Jan 12, 2010 1:13 am
Posts: 11
Hi, great addon, thanks.

I am using this on my priest and now on my mage. Is it possible to add Buffs so that they can be cast using the Buff panel using smart cast?

Trying to set it up so I can Amplify Magic on the raid, by spaming the Buff panel as there is not group cast for that spell.
I have looked, but cannot find any options to do this.

Once again, thank you for your work and support on this great utility,

much appreciated.


Top
 Profile  
 
 Post subject: Re: VuhDo - Adding Buffs for Buff bar
PostPosted: Tue Jan 12, 2010 3:55 am 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
Cheww wrote:
Hi, great addon, thanks.

I am using this on my priest and now on my mage. Is it possible to add Buffs so that they can be cast using the Buff panel using smart cast?

Trying to set it up so I can Amplify Magic on the raid, by spaming the Buff panel as there is not group cast for that spell.
I have looked, but cannot find any options to do this.

Once again, thank you for your work and support on this great utility,

much appreciated.


No, you can't add buffs manually, but I might add amplify and dampen magic for you...


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon made by an even nicer person
PostPosted: Tue Jan 12, 2010 6:57 am 
Offline
Healer-At-Arms

Joined: Tue Jan 12, 2010 1:13 am
Posts: 11
That's great!

It will make it so much easier to put it on the raid, making sure not to miss someone, as that is quite easy with 25 people.

Thank you very much :)


Top
 Profile  
 
 Post subject: Can not click in combat.
PostPosted: Tue Jan 12, 2010 10:45 am 
Offline
Sapling

Joined: Sun Dec 13, 2009 5:54 pm
Posts: 6
For about the last week I have had an issue where I can not click on Vudhu if I am in combat which is causing me a major headache. I have had to go back to Healbot. There are no changes that I have made other then going from Cartographer to Mapster and assume that would not make a difference.

Has this happened to anyone else or is it a known conflict with another addon? I am running the v1.232 and update several times a week.

Gabreal - Stahhelm US

Any help would be appreciated.


Top
 Profile  
 
 Post subject: Re: Can not click in combat.
PostPosted: Tue Jan 12, 2010 11:03 am 
Offline
Holy Knight

Joined: Thu Mar 05, 2009 4:21 am
Posts: 1711
Location: Burscheid, Germany
tazukia wrote:
For about the last week I have had an issue where I can not click on Vudhu if I am in combat which is causing me a major headache. I have had to go back to Healbot. There are no changes that I have made other then going from Cartographer to Mapster and assume that would not make a difference.

Has this happened to anyone else or is it a known conflict with another addon? I am running the v1.232 and update several times a week.

Gabreal - Stahhelm US

Any help would be appreciated.


Please try turning off Options=>Spells=>Misc, trinket 1/2 and both instants.


Top
 Profile  
 
 Post subject: Re: Can not click in combat.
PostPosted: Tue Jan 12, 2010 11:23 am 
Offline
Sapling

Joined: Sun Dec 13, 2009 5:54 pm
Posts: 6
Iza wrote:
tazukia wrote:
For about the last week I have had an issue where I can not click on Vudhu if I am in combat which is causing me a major headache. I have had to go back to Healbot. There are no changes that I have made other then going from Cartographer to Mapster and assume that would not make a difference.

Has this happened to anyone else or is it a known conflict with another addon? I am running the v1.232 and update several times a week.

Gabreal - Stahhelm US

Any help would be appreciated.


Please try turning off Options=>Spells=>Misc, trinket 1/2 and both instants.


Will do. Thanks for the quick response.


Top
 Profile  
 
 Post subject: Re: VuhDo - nice healing addon
PostPosted: Tue Jan 12, 2010 12:51 pm 
Offline
the Guild Killer
User avatar

Joined: Tue Jul 01, 2008 5:49 pm
Posts: 690
Location: BC, Canada
I should have done this a long time ago.

Iza, I'm making you your own forums and I'll give you godmode status within it.

I don't know about you, but I have a hard time tracing specific questions and stuff in a 100 page long thread. This way, you can sticky any frequently asked posts.

Going to lock this too so people don't get confused. Sorry if your question didn't get answered guys, just repost it in the new forum.

_________________
World of Matticus - The WoW blog!
WoW Insider - Raid Rx columnist
Matt's Twitter - The official streaming consciousness of creative and intense dwarf blogger

Image

See this guy above me? Do not be this guy.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 2180 posts ]  Go to page Previous  1 ... 105, 106, 107, 108, 109

All times are UTC - 8 hours [ DST ]


Who is online

Users browsing this forum: Brickthrower, Google [Bot] and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  

Blue Moon by Trent © 2007
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group