Hi, first off, thanks for the awesome program.
I have 3 teams going, trying to get a 20 man going soon.
First two teams work fine. a druid/tank Paladin/healer, team 2 is warrior tank/Priest healer. on the third team.. I don't have a tank. I have a rogue, hunter, lock, mage and Druid healer. This is the problem. The druid will not buff, or heal. the mage buffs everyone. the druid does nothing. No idea what's going on. Do i have to have a tank?
I made the rogue a tank in the dedicated tanks, that didn't work. the druid is last on dedicated healer list.
Like i said, the paladin and the priest heal great.. but the druid won't. any idea on what to do?
I have latest build.
Thanks for the help.
Off topic, what's a good way to make the Locks do other spells other then shadowbolt?
just add more /cast *spell* under the /cast shadow bolt in single() function?
Edit* I put in the druid tank from team 1 into team 3, and neither the druid/tank or druid/healer buff MOW. team 1 is level 40, team 3 is level 26. Is 30 minute single MOW not supported? Mage buff's work fine at level 26. Haven't tried taking health damage on the level 40 tank to see if the level 26 druid heals or not. Should i try that and come back? or do you think there's something else at play?
Edit2* Okay, just walked into stockades with the level 40 tank and the druid healer.
I died. no heals. : ( the healer did NOTHING. :( /sad
I did the same changes for all 3 teams. like i said, paladin, and priest heal fine. all works on them. per your code. but the druid is DOA.
HELP ma please master!!! I can kinda read the code, but i know nothing!
Nip
Unfortunately, in the current release, I decide a druid is a healer by seeing if he has SWIFTMEND spec'd. That isn't going to work for you.
So change this line in SM_Extend.lua:
function IsDruidHealer()
n,ic,t,c,EM=GetTalentInfo(3,15)
if EM>0 then return EM else return nil end
end
To something like:
function IsDruidHealer()
n,ic,t,c,EM=GetTalentInfo(3,3)
if EM>0 then return EM else return nil end
end
This is fixed in the coming release :)