Page 1 of 1
BB Monster Missions
Posted: Fri Oct 14, 2005 5:53 pm
by DrmChld
Looking for a macro to automate BB Monster Missions.

Posted: Fri Oct 14, 2005 10:16 pm
by A_Druid_00
Me too

Posted: Sat Oct 15, 2005 3:38 am
by Ccomp5950
It can be completely automated but don't expect anyone to just give you fully automated working macros...if the general population had this it would get nerfed in some form or fashion.
But here I will toss you a bone...
This is assuming you have Sneak in Hotkey 5 and Hide in Hotkey 6
and you have to have a fresh (IE: You update it in your abilities box everytime you zone into the instance) Hide and Sneak in your abilities box for "Abilityready" to work (IE: for the macro to not kill you by unhiding you around many many mobs.)
Looters Code
Code: Select all
|Mac Looter
Sub Main
/target corpse
/delay 1
/if (!${Target.ID}) {
/echo Nothing targeted, aborting
/endmac
/loot
/delay 3
/keypress 5
/keypress 6
:Hider
/if (${Me.AbilityReady["Hide"]}) {
/keypress 6
/echo Hide was still up
}
/if (${Me.AbilityReady["Sneak"]}) {
/keypress 5
/echo Sneak was still up
}
/delay 1
/if (${Me.AbilityReady["Hide"]}) /goto :Hider
/if (${Me.AbilityReady["Sneak"]}) /goto :Hider
/itemnotify loot1 rightmouseup
/notify LootWnd DoneButton leftmouseup
/delay 11s
/echo Hide and Sneak are ready to recycle
Openers Code....
This assumes OPEN is in hotkey 2
Sneak is in 5
Hide is in 6
Code: Select all
Sub Main
/target a_chest npc
/delay 1
/if (!${Target.ID}) {
/echo Nothing targeted, aborting
/endmac
}
/target a_chest npc
/delay 1
/keypress 2
/delay 3
/keypress 5
/keypress 6
/keypress 5
/keypress 6
:Hider
/if (${Me.AbilityReady["Hide"]}) /keypress 6
/if (${Me.AbilityReady["Sneak"]}) /keypress 5
/delay 1
/if (${Me.AbilityReady["Hide"]}) /goto :Hider
/if (${Me.AbilityReady["Sneak"]}) /goto :Hider
/delay 11s
/echo Sneak and Hide are ready to be recycled
Good luck working on the rest of it.
Posted: Sat Oct 15, 2005 1:34 pm
by DrmChld
That makes it so much easier.
Thanks!
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:31 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:32 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:33 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:35 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:36 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:37 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:39 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:40 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:41 am
by xyilla
Re: BB Monster Missions
Posted: Thu Jan 08, 2026 5:43 am
by xyilla