• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Request - Turn in Macro for Multiple items? (1 Viewer)

Skyjet2000

New member
Joined
Jul 2, 2011
RedCents
555¢
I've used a simple turn in macro for things like Pearl to ragefire etc.
Wondering if there is a macro that will turn in 2 or more items at once (Currently a Shady Goblin for Chardok Ring quest).

The one I use for cleric epic was

Rich (BB code):
Sub Main
    :WaitForSpawn
    /echo [${Time}] Checking Ragefire Spawn ...
   
    /if (${Spawn["Ragefire"].ID}) {
        /target "Ragefire"
        /face
        /delay 9
        /itemnotify ${FindItem[=Shimmering Pearl].InvSlot} leftmouseup
        /click left target
        /delay 5
        /notify GiveWnd GVW_MyItemSlot1 leftmouseup
        /delay 4
        /notify GiveWnd GVW_Give_Button leftmouseup
        /delay 3s
        /autoinv
        /casting "Origin"
       
       
    } else {
        /echo He's not here ... delay 1 second ...
       
        /delay 1s
        /goto :WaitForSpawn
    }
/return

Is there an easy way to edit this one to do it?
The two items needing to be turned in are "Forged Note to Courier" and "Drogan Warlord's Insignia"
 
Replace the
Rich (BB code):
        /itemnotify ${FindItem[=Shimmering Pearl].InvSlot} leftmouseup
        /click left target
        /delay 5

with
Rich (BB code):
        /itemnotify ${FindItem[=Forged Note to Courier].InvSlot} leftmouseup
        /click left target
        /delay 5
        /itemnotify ${FindItem[=Drogan Warlord's Insignia].InvSlot} leftmouseup
        /click left target
        /delay 5

Depending on your latency you might need to adjust delay a bit


Oh, and also replace "Ragefire" with "Shady Goblin" :)

EDIT: I assume this is for the progression servers. There could be a bit of a race condition if two people are running this and the macro hits at the same time...
 
Request - Turn in Macro for Multiple items?

Users who are viewing this thread

Back
Top