matt84
Member
- Joined
- Mar 22, 2010
- Messages
- 440
came up with a quick fix for Ruin.. all abilities seem to be firing fine and as per how they should be in the code
working fine for pre 50 with this
Code:
if (Ultima.UltSettings.SmartTarget)
{
if (await RagingStrikes()) return true;
if (await BioII()) return true;
if (await Miasma()) return true;
if (await Bio()) return true;
if (await MiasmaII()) return true;
if (await Aetherflow()) return true;
if (await EnergyDrain()) return true;
if (await Contagion()) return true;
if (await Bane()) return true;
if (await Fester()) return true;
if (await ShadowFlare()) return true;
if (await Rouse()) return true;
if (await Spur()) return true;
if (await Enkindle()) return true;
if (await Ruin()) return true;
if (await RuinII()) return true;
return await AerialSlash();
}
working fine for pre 50 with this