What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Reqest Monk WOL Sunwuko

Why so sad. There's already plenty of posts about routines like this one. And even the one already in Trinity works allright
 
Sorry but both oncepuchmonk and LON WOL doesn't work as intended in align with the 2.6.1 patch. Both don't use a generator and even without generator , they never cast blinding flash as alternative! So which routine is working for WOL monk? Maybe I am wrong but I doubled checked them.
 
One punch works fine with no-gen WOL build? Farming T13 for me, not optimal skill usage but with correct gear still works well.

Not using blinding flash. Dash/Epiph/Mantra/Sweep/Mystic/WoL.

Standard In-Geom/Sage Set build.
 
To fix blinding flash:
Go into the script file
CTRL+F
if (Skills.Monk.BlindingFlash.CanCast() && Legendary.TheLawsOfSeph.IsEquipped && Player.PrimaryResource < Player.PrimaryResourceMax - 165)
return BlindingFlash();
and delete "&& Legendary.TheLawsOfSeph.IsEquipped"
such that you are left with
if (Skills.Monk.BlindingFlash.CanCast() && Player.PrimaryResource < Player.PrimaryResourceMax - 165)
return BlindingFlash();
 
Back
Top