im using this for leveling atm. Much healing things because of the bugged path/fight routine
Monk - Game Guide - Diablo III
Monk - Game Guide - Diablo III
Last edited:
guys what skills are u using for monk in Sarkoth Farm ?
Spell.CastOnUnit(SNOPower.Monk_FistsofThunder, 1, ctx => ((DiaUnit)ctx).ACDGuid)
Spell.CastAtLocation(SNOPower.Monk_FirstsofThunder, ret => CombatTargeting.Instance.FirstNpc.Position)
public static Composite CastAtLocation(SNOPower power, ValueRetriever<Vector3> position, ValueRetriever<bool> extraRequirements = null)
{
return Cast(power, position, 2, null, extraRequirements);
}
I fixed it![]()
Where did you find this? Good catch...
Spell.CastOnUnit(SNOPower.Monk_FistsofThunder, 1,
ret => CombatTargeting.Instance.FirstNpc.ACDGuid,
extra => CombatTargeting.Instance.FirstNpc.Distance > 20f),
Can you see if that works?
The value needs to be tweaked.
Yup, that works. Dunno why that did not work when I tried it ( or atleast that's what I thought I wrote ) :S .. must have been a Syntax error ;<
Spell.CastOnUnit(SNOPower.Monk_FistsofThunder, 1,
ret => CombatTargeting.Instance.FirstNpc.ACDGuid,
extra => CombatTargeting.Instance.FirstNpc.Distance > 20f),
Can you see if that works?
The value needs to be tweaked.
Yup, that works. Dunno why that did not work when I tried it before ( or atleast that's what I thought I wrote ) :S .. must have been a Syntax error ;<
It's only doing it for objects.......so wait....let us test it...
// Primary Skills.
Spell.CastAtLocation(SNOPower.Monk_DeadlyReach, ret => CombatTargeting.Instance.FirstNpc.Position),
Spell.CastAtLocation(SNOPower.Monk_CripplingWave, ret => CombatTargeting.Instance.FirstNpc.Position),
Spell.CastAtLocation(SNOPower.Monk_WayOfTheHundredFists, ret => CombatTargeting.Instance.FirstNpc.Position),
Spell.CastAtLocation(SNOPower.Monk_FistsofThunder, ret => CombatTargeting.Instance.FirstNpc.Position)
)
Spell.CastOnUnit(SNOPower.Monk_FistsofThunder, 1, ctx => ((DiaUnit)ctx).ACDGuid)
That because
Have not been changed to
So when it's not above 20f, it's still executing it the old way..