Venus112
New Member
- Joined
- Jun 17, 2010
- Messages
- 1,509
- Reaction score
- 13
Hey Guys.
I'm trying to redo the buffing, as i'd like it to be a bit more intuitive.
So far i've done the following, but i'm getting a "Some codes does not return a value"
I want it to buff BoM if there's a druid in the group, but i dont really see the problem.
Anyone got an idea?
Else i'll just go back to the old buffing, i just didn't like the way it would buff BoM directly if a druid buffed MoTW or another paladin buffed BoK
I'm trying to redo the buffing, as i'd like it to be a bit more intuitive.
So far i've done the following, but i'm getting a "Some codes does not return a value"
public bool ShouldMight()
{
foreach (WoWPlayer p in Me.PartyMembers)
{
if (p.Class == WoWClass.Druid) { return true; }
{
if ((p.ActiveAuras["Blessing of Might"].CreatorGuid != Me.Guid) && !Me.HasAura ("Blessing of Might"))
{
if (CastSpell("Blessing of Might") == true)
{
Logging.Write(Color.Lime, "Blessing of Might");
return true;
}
}
}
return false;
}
}
I want it to buff BoM if there's a druid in the group, but i dont really see the problem.
Anyone got an idea?
Else i'll just go back to the old buffing, i just didn't like the way it would buff BoM directly if a druid buffed MoTW or another paladin buffed BoK
Last edited:






