 |
11/19/09, 10:04 AM
|
#126
|
|
Piston Honda
Tauren Druid
Stormscale (EU)
|
Originally Posted by nepsi
Feature request for DK:
Hysteria and Empowered Rune Weapon might be easy, but what about having the Ghoul not out and the CD is up, would be nice to get a button for this as well.
|
evl_reminders isn't a cooldown tracker though, since you can't show/hide clickable buttons in combat. So basicly what you are asking for isn't really in the scope of this particular addon. It is a reminder(!) that you have forgotten to use something you absolutely should use before going into combat.
Like if you are a DK with Master of Ghouls, but don't have a pet out. That sort of thing.
|
|
|
|
11/20/09, 1:09 PM
|
#127
|
|
Glass Joe
Night Elf Rogue
Forscherliga (EU)
|
Originally Posted by ninor
evl_reminders isn't a cooldown tracker though, since you can't show/hide clickable buttons in combat. So basicly what you are asking for isn't really in the scope of this particular addon. It is a reminder(!) that you have forgotten to use something you absolutely should use before going into combat.
Like if you are a DK with Master of Ghouls, but don't have a pet out. That sort of thing.
|
I was thinking of reminders indeed, like the Horn thingy. But I see your points, understood and agreed.
|
|
|
|
|
12/06/09, 6:46 AM
|
#128
|
|
Glass Joe
Human Mage
Azjol-Nerub (EU)
|
I came across this addon in my search for a "rogue-esque" bar addon for enhancement shamans maelstrom weapon procs, is there any chance of making it part of this addon? Also, would it be possible if you *could* make this change, to have it looking something like nug combo bar NugComboBar : WoWInterface Downloads : Rogue (basic though, none of that flashy stuff)
Hope this isn't asking too much 
|
|
|
|
|
12/07/09, 3:05 AM
|
#129
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by Erpgore
I came across this addon in my search for a "rogue-esque" bar addon for enhancement shamans maelstrom weapon procs, is there any chance of making it part of this addon?
|
Which of my addons would accomplish this? I don't think this will ever be implemented simply because if what you are trying to do isn't in the description of any of my addons it means that it's outside it's scope and therefore considered bloat. However you could always fork one of my addons and make it into a proc watching addon.
Originally Posted by Erpgore
|
The big numerical display is the reason I made evl_Combo in the first place, so I won't be modifying it to include "flashy stuff". But again there are tons of addons out there that already do this.
|
|
|
|
12/07/09, 2:11 PM
|
#130
|
|
Glass Joe
Human Mage
Azjol-Nerub (EU)
|
OK, sorry Evl, I'll explain in more clarity.
I've been hunting for a while now, for a simple addon to display both rogue combo points AND the "stacking proc" from maelstrom weapon. I can see why you asked what you did, I'm not asking for you to recode this to be a "bar like" addon, merely to include the shaman part in the count, if that makes sense? Sorry if my wording was a bit mis-leading.
It's ok now though, I've seen over on WowI that Nug is re-doing his rogue addon to do the job I want, but thanks for replying.
|
|
|
|
|
12/29/09, 11:00 AM
|
#131
|
|
Glass Joe
Human Warlock
Kargath (EU)
|
Hi evl,
i have a little problem with evl_Reminders. When i equip a one-handed weapon and a shield together (on my shaman) the frame won't show up. I hope this isn't too hard to fix.
Thanks in advance and keep on the good word :>
|
|
|
|
|
12/29/09, 1:25 PM
|
#132
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by MouzArt
i have a little problem with evl_Reminders. When i equip a one-handed weapon and a shield together (on my shaman) the frame won't show up. I hope this isn't too hard to fix.
|
Try and grab the latest version from github, it should be working now, thanks for the bug report!
Last edited by evl : 12/30/09 at 10:33 AM.
|
|
|
|
12/30/09, 9:37 AM
|
#133
|
|
Glass Joe
Human Warlock
Kargath (EU)
|
Thanks for fixing it so fast. I will test it later and edit my post.
edit:Works like a charm.
Last edited by MouzArt : 12/30/09 at 11:54 AM.
|
|
|
|
|
01/06/10, 5:04 AM
|
#134
|
|
Piston Honda
Tauren Druid
Stormscale (EU)
|
A small update, SliceDice now fully supports all your moonkin needs.*
Big thanks to Evl for putting up with me nagging about stuff a lot and struggling to explain how exactly Eclipse works.
*If those needs consists of tracking duration of IFF, MF, IS and Eclipse+ICD.
|
|
|
|
01/09/10, 8:27 PM
|
#135
|
|
Von Kaiser
Tauren Druid
Anachronos (EU)
|
I believe this takes care of showing mana gem reminder for different levels. I tested it with my level 80 and a fresh level 1. Unfortunately I don't have any mage in the range 28-76 so I can't test if rank 1-5 works correctly.
-- TODO: Needs to be fixed so it works with all levels of mana gems, please submit a patch!
local getManaGem = function()
local _, rank = GetSpellInfo("Conjure Mana Gem")
local gem
if rank == "Rank 6" then
gem = "Mana Sapphire"
elseif rank == "Rank 5" then
gem = "Mana Emerald"
elseif rank == "Rank 4" then
gem = "Mana Ruby"
elseif rank == "Rank 3" then
gem = "Mana Citrine"
elseif rank == "Rank 2" then
gem = "Mana Jade"
elseif rank == "Rank 1" then
gem = "Mana Agate"
else
return false
end
return GetItemCount( gem , false, true) < 3
end
evl_Reminders:AddReminder("Less than 3 Mana Gems remaining", function() return getManaGem() end, "INV_Misc_Gem_Sapphire_02", {type1 = "spell", spell1 = "Conjure Mana Gem"})
|
|
|
|
|
01/11/10, 10:51 AM
|
#136
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by zimira
I believe this takes care of showing mana gem reminder for different levels. I tested it with my level 80 and a fresh level 1. Unfortunately I don't have any mage in the range 28-76 so I can't test if rank 1-5 works correctly.
|
Thanks a lot for the contribution, i've optimized your code slightly and it's available on github now. I'm going to test it a bit before I release it into the wild.
|
|
|
|
01/11/10, 5:11 PM
|
#137
|
|
Von Kaiser
Tauren Druid
Anachronos (EU)
|
Much tidier then my code, however the logic have gotten mixed around so it only shows a reminder when you have 3 gems in inventory.
Swapping:
return GetItemCount(gem, false, true) < 3
To:
return GetItemCount(gem, false, true) == 3
Should fix it though and your function name should still be properly descriptive.
|
|
|
|
|
01/12/10, 8:46 AM
|
#138
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by zimira
Should fix it though and your function name should still be properly descriptive.
|
Thanks, it should be on github now.
|
|
|
|
01/25/10, 4:41 AM
|
#139
|
|
Glass Joe
Blood Elf Rogue
Agamaggan
|
Not sure what i'm messing up, but I cant seem to install any evl addons.
Downloaded and re-downloaded reminders and sliceanddice, extracted to addons folder (on vista home c:/world of warcraft) and nothing. Don't show up in my addons list in game but are installed correctly in the interface / addons folder.
Any ideas? I'm posting here because this problem only seems to be with evl addons.
|
|
|
|
|
01/25/10, 4:51 AM
|
#140
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by Memarex
Downloaded and re-downloaded reminders and sliceanddice, extracted to addons folder (on vista home c:/world of warcraft) and nothing. Don't show up in my addons list in game but are installed correctly in the interface / addons folder.
|
If you downloaded them from Github you might have to rename the folders, they might be named something like evl_SliceDice-4d6366 because of the way Github packages projects. You want to remove the dash and everything following so it reads evl_SliceDice. This is simply because WoW won't load any folder that doesn't match it's TOC name.
Hope this helped!
|
|
|
|
01/25/10, 5:08 AM
|
#141
|
|
Glass Joe
Blood Elf Rogue
Agamaggan
|
Fantastic, I had deleted the numbers but left it as evl-slicedice.
Swapping the - out for a _ fixed it.
Thanks 
Last edited by Memarex : 01/25/10 at 5:50 AM.
|
|
|
|
|
02/17/10, 5:46 AM
|
#142
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by Memarex
Fantastic, I had deleted the numbers but left it as evl-slicedice.
Swapping the - out for a _ fixed it.
Thanks 
|
I've updated and repackaged all my addons now so the extracted folder matches the TOC file, this should handle any problems people have been experiencing with addons not loading.
|
|
|
|
05/10/10, 8:17 PM
|
#143
|
|
Glass Joe
Tauren Druid
Scarlet Crusade
|
SliceDice
Love the add-on, was wondering how and if its even possible to add entangling roots, for feral in particular.
|
|
|
|
|
05/18/10, 2:15 AM
|
#144
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by Lacktorium
Love the add-on, was wondering how and if its even possible to add entangling roots, for feral in particular.
|
Very possible, just open the moduels/feral.lua in a text-editor and append this before the "end":
-- Entangling Roots
local rootsBar = evl_SliceDice:CreateBar("target", "Entangling Roots", 27, 6)
rootsBar.colors = {{0/255, 255/255, 0/255}}
rootsBar.label:Hide()
I'm not sure if 27 is the max duration, or if it even makes any sense to have a duration bar on something that can break at any time but this should work
|
|
|
|
05/22/10, 12:18 PM
|
#145
|
|
Glass Joe
Tauren Druid
Scarlet Crusade
|
Thank you so much, you are right roots probably isn't the best thing to add. I was at the time having trouble with another add-on at accurately displaying the time left on roots for the deprogramming weekly in ICC.
Mangle on the other hand would suit just fine. i believe i can work out adding it just fine with the code you gave me.
Again thank you so much, love the add-on.
|
|
|
|
|
06/01/10, 5:52 AM
|
#146
|
|
Piston Honda
Tauren Druid
Stormscale (EU)
|
Eclipse is fixed for 3.3.3 and lacerate stack and timer, demo roar, mangle (cat/bear) and ff (feral) added in the last update.
|
|
|
|
06/15/10, 6:51 AM
|
#147
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
After playing around with my new Paladin i've added a pretty comprehensive Paladin module, while it doesn't try to compete with PallyPower or BuffBroker it's more than enough for managing your own buffs.
|
|
|
|
06/25/10, 10:53 PM
|
#148
|
|
Glass Joe
Ninetale
Undead Rogue
Jubei'Thos
|
This addon is simple and great but is there any way to track evenom buff? I know there is other addon that track evenom but I still like this addon as it is not so fancyful compare to others addon. I would like the evenom buff to be added? Any good
coder? Thanks
|
|
|
|
|
06/25/10, 11:06 PM
|
#149
|
|
Von Kaiser
|
Add this to the rogue module:
local envenomBar = evl_SliceDice:CreateBar("player", "Envenom", 6, 6)
envenomBar.colors = {{0/255, 200/255, 0/255}}
envenomBar.label:Hide()
Last edited by Silvanaa : 06/25/10 at 11:56 PM.
|
|
|
|
|
06/29/10, 2:36 AM
|
#150
|
|
Piston Honda
Blood Elf Rogue
Stormscale (EU)
|
Originally Posted by Silvanaa
Add this to the rogue module:
|
I'd just like to mention that you can add this (and other customizations) to config.lua instead of the actual module to prevent them from being nuked when the addon is updated.
Last edited by evl : 06/29/10 at 2:43 AM.
|
|
|
|
|