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

How can always use devours[skill]?

pgs

New Member
Joined
Jul 24, 2017
Messages
20
Reaction score
0
protected virtual bool ShouldDevour()
{
if (!Skills.Necromancer.Devour.CanCast())
return false;

if (Player.PrimaryResourcePct > 0 )
return false;

if (TargetUtil.CorpseCount(60f) <= 0)
return false;

return true;


--------------------------------------------------------------------------------------------------------------------
What should I change?

I always want to use it.
 
if (!Skills.Necromancer.Devour.CanCast())
return true;

You just need to change the first line to true. So if it is available it will cast devour.

Alternatively you can do the numpad trick. If you go into keybinds and set the secondary keybind for devour to a numberpad 1-9 number- You can hold down the numberpad button u selected and hit numblock. This causes devour to be cast nonstop.
 
if (!Skills.Necromancer.Devour.CanCast())
return true;


I changed the line but it did not use

but i dont find keybind setting
 
Back
Top