Code:
case 5: //Combo to soften our enemies with a powerful attack while we have max mana amounts
{
if ( m_Mobile.Mana > 80 )
{
if ( Utility.Random( 2 ) == 0 && !c.Paralyzed && !c.Frozen && !c.Poisoned )
{
m_Combo = 0;
spell = new VengefulSpiritSpell ( m_Mobile, null );
}
else
{
m_Combo = 0;
spell = new ParalyzeSpell( m_Mobile, null );
}
}
break;
}
This part came from your Necro AI, which is what I kinda got some of your ideas from so yes I should really be thanking you =P