| Updated: | 10-15-10 12:37 AM |
| Created: | 11-19-09 05:08 AM |
| Downloads: | 3,460 |
| Favorites: | 39 |
| MD5: |
File Name |
Version |
Size |
Author |
Date |
1.5 |
10kB |
evl |
07-19-10 03:09 AM |
|
1.42 |
10kB |
evl |
07-11-10 05:40 AM |
|
1.41 |
9kB |
evl |
07-09-10 12:37 AM |
![]() |
Comment Options |
|
|
|
|
A Kobold Labourer
Forum posts: 1
File comments: 7
Uploads: 0
|
works like a charm, thanks!
|
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 1
File comments: 7
Uploads: 0
|
love your addon
![]() but...I'm not a fan of healbot, using mouseover macros though, and wrote a little heal drood module, and having some problems with it: Code:
-- Wild Growth
local wGDuration = 7
local wGBar = addon:CreateBar("target", 53251, wGDuration, 14)
wGBar.colors = {{118/255, 238/255, 02/255}}
![]() |
|
|
|
|
||
of course it works. Thank you! |
||
|
|
|
|
|
|
The addon should now be fully language independent in the latest release, please test.
|
|
|
|
|
|
||
|
||
|
|
|
|
||
And with that, your addon is language independent! |
||
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 1
Uploads: 0
|
Okay, so I'm not that good at configuring through a text-file and I'm wondering if there's andy in-game menu to configure Slice Dice? It would be awesome for my kitty dps
![]() |
|
|
|
|
||
|
||
|
|
|
|
|
|
seems like version 1.42 is incorrectly packaged, or something. the ZIP does not contain a top-level folder for the addon... the result is that the contents go directly into .../Interface/AddOns (as separate TOC, lua, and sub-folders), which is "malformed".
FYI.
__________________
Current author/maintainer of Aloft (the nameplate addon) http://www.wowinterface.com/download...AloftBeta.html ----- Yes, Virginia, there is no such thing as permanent free web hosting! |
|
|
|
|
|
|
|
it seems it works only with EN client...
can you make it locale independent? for rogues, I've done that (I'm unable to test it, realms are down) Code:
local sliceAndDiceSpell = GetSpellName(6774, "spell") -- http://www.wowhead.com/spell=6774 local hungerSpell = GetSpellName(51662, "spell") -- http://www.wowhead.com/spell=51662 local ruptureSpell = GetSpellName(48672, "spell") -- http://www.wowhead.com/spell=48672 Code:
local sliceAndDiceBar = addon:CreateBar("player", sliceAndDiceSpell, sliceAndDiceDuration, 19)
|
|
|
|
|
|
||
That being said the bar will still work if its max duration is shorter than the current buff duration you just won't see it moving until it moves within the limit. All bars should (afaik) take into account all talents, glyphs and set-bonuses. |
||
|
|
|
|
||
Make sense?
Last edited by fhaddad922 : 06-25-10 at 11:47 AM.
|
||
|
|
|
|
|
|
A Kobold Labourer
Forum posts: 0
File comments: 7
Uploads: 0
|
hmmm i think the evenom buff is not always 5 sec... sometime u evenmon when it 4 combo point as such the code below is not exactly correct. Is there any remedy for it?
|
|
|
|
|
|
|
Envenom
Is there anyway I can add envenom to this addon? I love it and just wish it could track envenom, I know its a short duration but its really nice when trying to keep 100% envenom buff.
Edit: After spending some time looking at your code, I figured it out (I think). It seems to be working. Here's the code I added to the rogue.lua file at the very bottom before the last line that says "end" -- Envenom local envenomDuration = 5 local envenomBar = evl_SliceDice:CreateBar("player", "Envenom", envenomDuration, 6) envenomBar.colors = {{0/255, 100/255, 100/255}} envenomBar.label:Hide()
Last edited by fhaddad922 : 06-16-10 at 03:02 PM.
|
|
|
|
![]() |