protected virtual bool ShouldDevour() { if (!Skills.Necromancer.Devour.CanCast()) return true; if (Player.PrimaryResourcePct >= 0 ) return false; if (TargetUtil.CorpseCount(60f) <= 0) return false; return true; ================================== i change first line to true. but did not use the devour skill plz help
(Use num lock trick before start the bot, it will take you 5 more seconds but will non stop cast it) i dont understand i dont find num lock trigger in db system You mean to use autohotkey program??
Why are you changing this? The default code will cast it every time it's able. Your change would cause it to never cast.
Code: if (Player.PrimaryResourcePct >= 0 ) return false; This means it will only use it when your Essence pool is at 0.
I tried default setting but He never uses it. Code: protected virtual bool ShouldDevour() { if (!Skills.Necromancer.Devour.CanCast()) return false; if (Player.PrimaryResourcePct > 0.3f) return false; if (TargetUtil.CorpseCount(60f) <= 0) return false; return true;