• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Trading coin in a macro

TAR

Active member
Joined
May 2, 2011
RedCents
51¢
Looking to automate trading coin (gold) in a macro. I need to know how to get all gold on my cursor so I can trade it.

Any help would be great.

Thanks,
 
group with person you want to trade it with, and /split it, probably the easiest and quickest way (though realize you'll get half of it back, but it's better than nothing)
 
Who the fuck trades gold?

This macro will grab all the gold you have and give it to another toon.
You need to be standing next to the person you are trading with. Save and name givegold.mac or something.
/plugin mq2autotrade and add each other and BAM! http://www.redguides.com/community/showthread.php/24734-MQ2AutoAccept

Rich (BB code):
| Maskoi's Whythefuckareyoutradinggold.mac 08/02/2013

Sub Main

/declare GiveTo string bob

    /if (!${Window[InventoryWindow].Open}) {
        /windowstate InventoryWindow open
        /delay 10
    }
    /notify InventoryWindow IW_Subwindows tabselect 1
    | plat is IW_Money0/gold IW_Money1/electrum IW_Money2/copper IW_Money3
    /shift /notify InventoryWindow IW_Money1 leftmouseup 
    /delay 10
    /if (${Window[InventoryWindow].Open}) {
        /windowstate InventoryWindow close
        /delay 10
    }
    /target ${GiveTo}
    /delay 10
    /nomodkey /click left target
    /delay 10
    /notify TradeWnd TRDW_Trade_Button leftmouseup
    
/return
 
Trading coin in a macro

Users who are viewing this thread

Back
Top
Cart