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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Monk spam serenity Help

starwarslol888

New Member
Joined
Nov 25, 2014
Messages
15
Hello,

With the last update, im looking for some help to set Serenity Spam thx.

BY XEENG
To make your monk spam serenity in combat, open you MonkCombat.cs file.

And set your amount of health to 1

Example.

(Player.CurrentHealthPct <= 0.50 || (Player.IsIncapacitated && Player.CurrentHealthPct <= 0.90))

Change to

(Player.CurrentHealthPct <= 1 || (Player.IsIncapacitated && Player.CurrentHealthPct <= 1))

With the new patch i dont have the same line :

Code:
 private static bool CanCastSerenityOnLowHealth()
        {
            return (Player.CurrentHealthPct <= Settings.Combat.Monk.SerenityHealthPct || (Player.IsIncapacitated && Player.CurrentHealthPct <= 1)) && CanCast(SNOPower.Monk_Serenity);

in MOnk setting :

Code:
[DefaultValue(0.5f)]
        public float SerenityHealthPct
        {
            get
            {
                return _serenityHealthPct;
            }
            set
            {
                if (_serenityHealthPct != value)
                {
                    _serenityHealthPct = value;
                    OnPropertyChanged("SerenityHealthPct");
                }

If someone can help me thx you .
 
Back
Top