darkstrife
New Member
- Joined
- Apr 25, 2014
- Messages
- 22
- Reaction score
- 0
Does anyone know how to get monks to cast Exploding Palm - the flesh is weak on elite/boss mobs at 100% instead of around 50% hp? I tried moving the entire code higher up in monk.cs but no luck
// Exploding Palm
if (!UseOOCBuff && !IsCurrentlyAvoiding && !Player.IsIncapacitated &&
CombatBase.CanCast(SNOPower.Monk_ExplodingPalm, CombatBase.CanCastFlags.NoTimer) &&
!SpellTracker.IsUnitTracked(CurrentTarget, SNOPower.Monk_ExplodingPalm) &&
Player.PrimaryResource >= 40)
{
return new TrinityPower(SNOPower.Monk_ExplodingPalm, 14f, Vector3.Zero, -1, CurrentTarget.ACDGuid, 1, 1, WAIT_FOR_ANIM);
}
Last edited:






