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

Serenity Monk?

skittlebob

New Member
Joined
Sep 19, 2014
Messages
27
Reaction score
0
I'm not seeing my monk ever using serenity, and I can't find a setting in Trinity that modifies it.
 
MonkCombat.cs line 77->
if ((Player.CurrentHealthPct <= 0.50 || (Player.IsIncapacitated && Player.CurrentHealthPct <= 0.90)) && CanCast(SNOPower.Monk_Serenity))

first is the trigger at which hp % the bot should use serenity, 2nd is same as first but has higher hp% if player is stunned/frozen etc and third just checks if you can currently cast it.
If you are looking to cast it when ever possible just change the line to:
if (CanCast(SNOPower.Monk_Serenity))
 
One more thing - if you don't mind. Is there any way to make dashing speed cast its max range every time?
 
that is a bit more complicated to do, going to have to ask Rrix for that and I think he has more pressing things on his plate :D
 
Back
Top