BB Monster Missions

Have a macro idea but not sure where to start? Ask here.

Moderator: MacroQuest Developers

DrmChld
a ghoul
a ghoul
Posts: 89
Joined: Fri Jul 09, 2004 3:25 pm

BB Monster Missions

Post by DrmChld » Fri Oct 14, 2005 5:53 pm

Looking for a macro to automate BB Monster Missions.


:P

A_Druid_00
Macro Maker Extraordinaire
Posts: 2378
Joined: Tue Jul 13, 2004 12:45 pm
Location: Rolling on the Lawn Farting

Post by A_Druid_00 » Fri Oct 14, 2005 10:16 pm

Me too :D
[quote]<DigitalMocking> man, A_Druid_00 really does love those long ass if statements
<dont_know_at_all> i don't use his macro because i'm frightened of it[/quote]
[quote][12:45] <dont_know_at_all> never use a macro when you can really fuck up things with a plugin[/quote]

Ccomp5950
a ghoul
a ghoul
Posts: 94
Joined: Mon Apr 18, 2005 8:40 am

Post by Ccomp5950 » Sat Oct 15, 2005 3:38 am

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.

DrmChld
a ghoul
a ghoul
Posts: 89
Joined: Fri Jul 09, 2004 3:25 pm

Post by DrmChld » Sat Oct 15, 2005 1:34 pm

That makes it so much easier.

Thanks!