my monk is not activating mantra. and he is not using desert shroud as much as i want. Please help
Combat/Abilities/Monk
private static bool hasSWK = true;
Its not detecting sunwukos correctly it seems. I didnt look for the reason, but if you go into
Code:Combat/Abilities/Monk
and change the line to match this:
Code:private static bool hasSWK = true;
it works
Its not detecting sunwukos correctly it seems. I didnt look for the reason, but if you go into
Code:Combat/Abilities/Monk
and change the line to match this:
Code:private static bool hasSWK = true;
it works
// 4 Mantra spam for the 4 second buff
if (!UseOOCBuff && !IsCurrentlyAvoiding && !Player.IsIncapacitated && !Settings.Combat.Monk.DisableMantraSpam)
{
// SNOPower.X1_Monk_MantraOfConviction_v2
if (CanCast(SNOPower.X1_Monk_MantraOfConviction_v2) && !GetHasBuff(SNOPower.X1_Monk_MantraOfConviction_v2) &&
(Player.PrimaryResourcePct >= 0.7) && CurrentTarget != null)
{
return new TrinityPower(SNOPower.X1_Monk_MantraOfConviction_v2);
}
// SNOPower.X1_Monk_MantraOfRetribution_v2
if (CanCast(SNOPower.X1_Monk_MantraOfRetribution_v2) && !GetHasBuff(SNOPower.X1_Monk_MantraOfRetribution_v2) &&
(Player.PrimaryResourcePct >= 0.7) && CurrentTarget != null)
{
return new TrinityPower(SNOPower.X1_Monk_MantraOfRetribution_v2);
}
// SNOPower.X1_Monk_MantraOfEvasion_v2
if (CanCast(SNOPower.X1_Monk_MantraOfEvasion_v2) && !GetHasBuff(SNOPower.X1_Monk_MantraOfEvasion_v2) &&
(Player.PrimaryResourcePct >= 0.7) && CurrentTarget != null)
{
return new TrinityPower(SNOPower.X1_Monk_MantraOfEvasion_v2);
}
// SNOPower.X1_Monk_MantraOfHealing_v2
if (CanCast(SNOPower.X1_Monk_MantraOfHealing_v2) && !GetHasBuff(SNOPower.X1_Monk_MantraOfHealing_v2) &&
(Player.PrimaryResourcePct >= 0.7) && CurrentTarget != null)
{
return new TrinityPower(SNOPower.X1_Monk_MantraOfHealing_v2);
}
}
Player.PrimaryResourcePct >= 0.7