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

Simpliest CC ever

superpitbullk

New Member
Joined
May 13, 2012
Messages
119
Reaction score
0
can any1 make simple cc for bg which will use 1-3 spells
for example for hunter arcane shot enough for bg
or for moonk sunfire, moonfire
but i cant change current singular cc, cause its too much crosslinks, rotations etc

thx
 
thanks alot
got problems with target facing and movement but atleast this cc can make some activity
 
thanks alot
got problems with target facing and movement but atleast this cc can make some activity

update the Pulse() function

Code:
public override void Pulse()
        {
            if (Me.CurrentTarget != null && !Me.IsSafelyFacing(Me.CurrentTarget))
                Me.CurrentTarget.Face();

            if (Me.CurrentTarget != null)
                return;

            WoWPlayer ret = (from unit in ObjectManager.GetObjectsOfType<WoWPlayer>(true, true)
                    orderby unit.HealthPercent ascending
                    where !unit.IsFriendly
                    where !unit.IsDead
                    where !unit.IsGhost
                    where unit.DistanceSqr <= 40 * 40
                    where unit.InLineOfSight
                    select unit).FirstOrDefault();

            if(ret != null)
                ret.Target();
            else
                Me.ClearTarget();
        }

you will face the target now

let the botbase handle movement
 
thx much better now
movement i mean bot do not follow the target waiting for combats fade
but it still fine
 
Back
Top