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
With the new patch i dont have the same line :
in MOnk setting :
If someone can help me thx you .
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 .