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

[Request] Reduced Monk's Breath of Heaven Cooldown Use

day747

Member
Joined
Jan 21, 2012
Messages
74
Reaction score
0
hi guys how can change Cooldown ?

i need use all time cus i have helm,with stats Reduced Breath of Heaven 44%

I wish I could be simplified explanation because my English is weak
 
Code:
            // Breath of Heaven when needing healing or the buff
            if (!UseOOCBuff && (Player.CurrentHealthPct <= 0.6 || !GetHasBuff(SNOPower.Monk_BreathOfHeaven)) && CombatBase.CanCast(SNOPower.Monk_BreathOfHeaven) &&
                (Player.PrimaryResource >= 35 || (!CombatBase.CanCast(SNOPower.Monk_Serenity) && Player.PrimaryResource >= 25)))

the script uses based on your HP. play with the values.
 
if (!UseOOCBuff && (Player.CurrentHealthPct <= 0.6 || !


0.6 = 60%? im not entirely sure if it means 60%. try changing to <= 1.0
 
Back
Top