Hello all, seeking some help creating a macro that will turn a quest piece into a mob, invis with a CoS, then hit the trade button.
I need to do this to turn in an item into a rare quest mob. I need to be invis before hitting the trade window due to faction issues.
I found a similar macro written by someone else and was wondering how I could go about modifying it. I would obviously change the name of the mob to fit what I need.
I'm thinking after this line
I can put something along the lines of
which would be the hotkey bound to my circlet of shadows
Any tips/advice would be great! Thanks!
I need to do this to turn in an item into a rare quest mob. I need to be invis before hitting the trade window due to faction issues.
I found a similar macro written by someone else and was wondering how I could go about modifying it. I would obviously change the name of the mob to fit what I need.
Rich (BB code):
Sub main
:mainLoop
/if (${Spawn[npc Zordak Ragefire].ID}) {
/if (${Target.ID}) /squelch /target clear
/delay 2s !${Target.ID}
/squelch /target npc Zordak Ragefire
/delay 2s ${Target.Name.Find[Zordak]}
/if (${Target.Name.Find[Zordak]}) {
/echo Zordak found attempting to give him the Shimmering Pearl
/if (${Cursor.ID}) /autoinventory
/delay 2s !${Cursor.ID}
/itemnotify ${FindItem[Shimmering Pearl].InvSlot} leftmouseup
/delay 2s ${Cursor.ID}
/ubertrade
/delay 2s ${Window[GiveWnd].Open}
/if (${Window[GiveWnd].Open}) {
/notify GiveWnd GVW_Give_Button leftmouseup
/endm
}
}
}
/goto :mainLoop
/return
I'm thinking after this line
Rich (BB code):
/if (${Window[GiveWnd].Open}) {
Rich (BB code):
/keypress 5
Any tips/advice would be great! Thanks!

