Cryogenesis
Community Developer
- Joined
 - Jul 13, 2010
 
- Messages
 - 2,128
 
- Reaction score
 - 13
 
Hey guys, i may have found the weird running while in need of heal:
	
	
	
		
Havent tested it without this line, but may it be this?
Its inside the Rest.cs
				
			
		Code:
	
	        private static Composite Rejuvenate
        {
            get
            {
                using (BuddyTor.Memory.AcquireFrame())
                {
                    return new Action(delegate
                    {
                        if (NeedRest())
                        {
                            while (KeepResting())
                            {
                                if (!Me.IsCasting)
                                    AbilityManager.Cast(Me.RejuvenateAbilityName(), Me);
                                Thread.Sleep(100);
                            }
                            [B]Movement.Move(Buddy.Swtor.MovementDirection.Forward, System.TimeSpan.FromMilliseconds(1));[/B]
                            return RunStatus.Success;
                        }
                        return RunStatus.Failure;
                    });
                }
            }
        }
	Havent tested it without this line, but may it be this?
Its inside the Rest.cs






