slutsarefun
New member
- Joined
- Nov 19, 2005
- RedCents
- 0¢
Here is my first attempt at macros!
Basically it assists a puller in doing the HHK Monster Mission.
Start this macro as soon as you get the task, select the Sentry, and zone in. What it will do is load your AAs, unequip your weapon and shield, attack any pickclaw your puller brings to your group, kill named when it spawns, loot corpse, and end macro.
changed lesion and kick to / commands and added move to corpse to loot.
Basically it assists a puller in doing the HHK Monster Mission.
Start this macro as soon as you get the task, select the Sentry, and zone in. What it will do is load your AAs, unequip your weapon and shield, attack any pickclaw your puller brings to your group, kill named when it spawns, loot corpse, and end macro.
changed lesion and kick to / commands and added move to corpse to loot.
Rich (BB code):
#Event Loot "Someone is already looting that corpse."
Sub Main
/echo Auto killing shit in HHK!
/call Setup
:loop
/if (${NearestSpawn[Pickclaw NPC].Distance}<30) /call Kill
/if (${Spawn[Overlord NPC].ID}) /call Killnamed
/if ( (${NearestSpawn[Overlord Corpse].ID}) && (!${FindItem[Shard of Wisdom].InvSlot.ID}) ) {
/call Event_Loot
}
/if (${FindItem[Shard of Wisdom].InvSlot.ID}) /end
/doevents
/goto :loop
/return
Sub Setup
/if (!${Window[AAWindow].Open}) /keypress V
/notify AAWindow AAW_LoadButton Leftmouseup
/delay 2s
/cleanup
/delay 2s
/itemnotify mainhand leftmouseup
/itemnotify pack7 leftmouseup
/itemnotify offhand leftmouseup
/itemnotify pack8 leftmouseup
/return
Sub Kill
/target ${NearestSpawn[Pickclaw NPC]}
/delay 1s
/if (${Target.ID}) /face
/keypress forward hold
/delay 1s ${NearestSpawn[Pickclaw NPC].Distance}<10
/keypress back
/attack on
/if (${Me.Combat} && ${Me.State.NotEqual[STUN]}) {
/if (${Me.AbilityReady["Kick"]}) {
/delay 2
/doability "Kick"
}
/if (${Me.AltAbilityReady["Lesion"]}) {
/delay 2
/aa act Lesion
}
}
/delay 10s
/attack off
/return
Sub Killnamed
/target ${NearestSpawn[Overlord NPC]}
/delay 2s
/if (${Target.ID}) /face
/delay 2s
/keypress forward hold
/delay 2s ${NearestSpawn[Overlord NPC].Distance}<10
/keypress back
/attack on
/keypress 3
/delay 15s
/attack off
/return
Sub Event_Loot
:loot
/if (${FindItem[Shard of Wisdom].InvSlot.ID}) /return
/target Goblin Overlord Zobb's Corpse
/delay 2s
/if (${Target.ID}) /face
/delay 2s
/keypress forward hold
/delay 2s ${NearestSpawn[Overlord corpse].Distance}<7
/keypress back
/delay 2s
/loot
/delay 3s
/itemnotify loot2 rightmouseup
/delay 3s
/notify LootWnd DoneButton leftmouseup
/doevents
/goto :loot
/return
Last edited:


