open Plugins > Trinity > Combat > Abilities > Wizard (Open with notepad) Find where it says Wave of force and copy paste this over it
// Wave of force
if (!UseOOCBuff && !Player.IsIncapacitated && CombatBase.CanCast(SNOPower.Wizard_WaveOfForce, CombatBase.CanCastFlags.NoTimer) && Player.PrimaryResource >= 25 &&
(TargetUtil.AnyMobsInRange(25) && CurrentTarget.RadiusDistance <= 25f) &&
PowerManager.CanCast(SNOPower.Wizard_WaveOfForce))
{
float blastRange = 11f;
return new TrinityPower(SNOPower.Wizard_WaveofForce, blastRange, Vector3.Zero, CurrentWorldDynamicId, -1, 0, 2, WAIT_FOR_ANIM);
}