classicjkee
New Member
- Joined
- May 14, 2012
- Messages
- 5
- Reaction score
- 0
Thanks for this i'll give it a try
Can u use this from lvl 1?
Stormrage, there's a plugin for that I believe. Search for it I cant remember.
Is there any settings on this CC? When I click Class Config nothing pops up
Thanks
I have applied some minor tweaks/improvements that I deemed necessary:
- Using Shadowflame when Target is within 10 yards
- Using Drain Soul when the target has less than 20% HP and 2 or less Soul Shards remaining. When we have 3 Soul Shards -AND- Decimation buff we will Soul Fire instead. (previous: Never used Drain Soul as Demonology)
- Soul Harvest set to use when 1 or no Soul Shards are remaining; this will prevent using Soul Harvest after every mob. Paired with the above improvements this will open up much faster kill-rates.
- Support for using Instant-Shadowbolt when the Shadow Trance buff proccs (with Glyph of Corruption)
Download:
View attachment 48487
Any ideas how to change the default minion from Voidwalker to something else (like Fel Hunter?) I don't like it using voidwalker in PvP. Also how would I tell it to not use health siphon (the ability that heals your minion). Thanks for any help and thanks for the updates to the CC guys![]()
if (SpellManager.HasSpell(Spells.SummonFelguard))
if (SpellManager.HasSpell(Spells.SummonFelhunter))
Spells.Cast(Spells.Felhunter, instant);
else if (SpellManager.HasSpell(Spells.SummonFelguard))
Spells.Cast(Spells.SummonFelguard, instant);
else if (SpellManager.HasSpell(Spells.SummonVoidwalker))
Spells.Cast(Spells.SummonVoidwalker, instant);
else if (SpellManager.HasSpell(Spells.SummonImp))
Spells.Cast(Spells.SummonImp, instant);
else
{
noPet = true;
}
return true;