Jump to content

How do execute commands during looting?


Macro

Recommended Posts

The bot will run through aggressive mobs when it is in the looting phase. 

Is it possible to have the bot check for targets near your target before running to loot?

If (Looting = true && additional Mob is found within 30 yards of your lootable target && same additional mob is also within 30 yards of ME && same 
    additional mob = aggressive)
	{
	Target additional mob;
        begin combat; 
	}

 

I was also hoping that I could put a 1 second strafe while running toward the mob to loot. 

  If (currently running toward dead target to loot)
			{                                
								Move.StrafeLeft(Move.MoveAction.DownKey);
								thread.sleep(1000)
                                                                Move.StrafeLeft(Move.MoveAction.UpKey);
								do not perform this action more than once per looting;
			}

I am not sure if this is possible as the loot function looks to be built in to wrobot and not in to the fightclass.

Are either of these things possible?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...