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

Please let me turn off auto pull and handle targeting in CC/Manual

protopally

Member
Joined
Jan 15, 2010
Messages
391
Reaction score
8
See Title

If its already possible please tell me how would love to test in FP/Raid Envionment for advanced CC Writing.
 
Ok, the way I would do it would be to implement a pull composite that well, does nothing, well, it should clear the target.
 
suppose i could give it a go but that would mean custom CC for Lazyraider type operation
 
Im sure there will be a few toggles of on/off. Like if to gather or not. When fully released.
 
Ok, the way I would do it would be to implement a pull composite that well, does nothing, well, it should clear the target.

Send this as the pull composite?
return new Action(ret => RunStatus.Failure);
 
Last edited:
Just do:

new Decoratior(ret => !BuddyTor.Me.InCombat, ur code)

Ill take a look at it later. It shouldnt be that hard, just add a hook which has no target
 
Code:
return new PrioritySelector(
                new Action( act =>
                                {
                                    BuddyTor.Me.ClearTarget();
                                    return RunStatus.Success;
                                })
                );
probly something like that, for the pull.
 
ok tryed custom pull rutine and it still moves about and targets randomly
 
Back
Top