MyWarrior v1.0

Post your completed (working) macros here. Only for macros using MQ2Data syntax!

Moderator: MacroQuest Developers

outlander
a hill giant
a hill giant
Posts: 232
Joined: Mon Feb 14, 2005 11:40 am

Post by outlander » Thu Jun 30, 2005 12:48 pm

gimp wrote:nice code :)
regarding the auto taunt, here's how i do it, feel free to use

Code: Select all

/if (${Me.Combat} && (${Me.TargetOfTarget.ID} != ${Me.ID})) {

	/if (${Me.CombatAbilityReady["Bazu Bellow"]}) {
		/i msg IRC_CHANNEL TAUNT: ${Target.CleanName} (${Target.ID}) (${Me.TargetOfTarget.Name} has aggro)
		/doability "Bazu Bellow"
		/delay 5
	} else {		
		/if (${Me.AbilityReady["Taunt"]}) {
			/i msg IRC_CHANNEL # Taunt: ${Target.CleanName} (${Target.ID}) (${Me.TargetOfTarget.Name} has aggro)
			/doability  "Taunt"
			/delay 5
		}
	}
}
Wouldn't this snippit only work if HoTT leadership was turned on?

DigitalMocking
a grimling bloodguard
a grimling bloodguard
Posts: 620
Joined: Mon Apr 04, 2005 5:53 pm

Post by DigitalMocking » Thu Jun 30, 2005 12:55 pm

I'm a big fan of one line stuff, makes it more annoying to debug!

Code: Select all

  /if (!${Me.TargetOfTarget.Name.Equal[${Me}]}) /if (${Target.Distance} < 25 && ${Me.AbilityReady["Taunt"]} && !${RaidMode}) /doability "Taunt" 

User avatar
gimp
a grimling bloodguard
a grimling bloodguard
Posts: 584
Joined: Fri Oct 29, 2004 9:28 am
Location: internet

Post by gimp » Fri Jul 01, 2005 7:57 pm

outlander wrote:Wouldn't this snippit only work if HoTT leadership was turned on?
its a code snippet. read it & use it, or don't. we're talking bot's here, if youre multiboxing, you likley have hott unless you are using some lame hack that enables it for you.