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

Necromancer Profile

  • Thread starter Thread starter Deleted member 357957
  • Start date Start date
D

Deleted member 357957

Guest
Hi!

Currently working on building my own nec profile, but can't for the life of me get the bot to click pylons.

Does anyone have any idea? I've put the following into GetBuffPower() and get the bot to move up to the shrine, but then it just stands there...

Code:
            var shrine = TargetUtil.BestShrine(ShrineRange, false).FirstOrDefault();

            if (shrine != null)
                return GetMovementPower(shrine.Position);
 

Found it...

Code:
            var shrine = TargetUtil.BestShrine(ShrineRange, false).FirstOrDefault();

            if (shrine != null)
            {
                if (shrine.Distance > 5f)
                    return GetMovementPower(shrine.Position);
                else
                    shrine.Interact();
 
Back
Top