• 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

Request - LOOKING FOR A SIMPLE MACRO TO EMPTY A GUILD BANK OUT

Joined
Jun 9, 2008
RedCents
355¢
trying to find a macro to empty a guild bank for transfer and have not found one , anyone?
thanks in advance.
 
For inspiration You can use this quickie I whipped up a while ago:

Rich (BB code):
|gbank.mac by playj for RG
|change guild bank items permission to public view
|v0.01 2015
|Usage: Have Open Guild Bank Window and /mac gbank number where number is number of items to change with the default being 5
|for example /mac gbank 7 will attempt to change first 7 items in bank
|currently the macro will change the first item in bank so you need to sort items by Permission so items needing changing are at the top
|change /notify GuildBankWnd GBANK_PermissionCombo listselect 4 to 3 if you want Public If Usable

Sub Main

	/declare i int local
	/declare BankCount int local 5
	/if (${Param0}) /varset BankCount ${Param0}
	/echo changing ${BankCount} items in bank to public view
	
	/for i 1 to ${BankCount}
		
		|/notify GuildBankWnd GBANK_ItemList listselect ${i}
		/notify GuildBankWnd GBANK_ItemList listselect 1
		/delay 7
		/notify GuildBankWnd GBANK_PermissionCombo listselect 4
		/delay 10
	/next i

/return

So what this does currently is simply sets permission to public for a number of items you specify

All you have to do is change
Rich (BB code):
/notify GuildBankWnd GBANK_PermissionCombo listselect 4
to appropriate Withdraw command
I suspect it is something like:
Rich (BB code):
/notify GuildBankWnd GBANK_WithdrawButton LeftMouseUp
To make sure open Guild Bank and then type /window GuildBankWnd in MQ2 window

- - - Updated - - -

It was GBANK_WithdrawButton :),
here's a version which takes out a number of items from guildbank and autoinventories.

Still this still needs a bit of work, as one autoinv should suffice.

Rich (BB code):
|cleanguildbank.mac by playj for RG
|withdraw guild bank items
|v0.02 Jan 2017
|Usage: Have Open Guild Bank Window and /mac cleanguildbank number where number is number of items to withdraw with the default being 5
|for example /mac cleanguildbank 7 will attempt to withdraw first 7 items in bank

Sub Main

	/declare i int local
	/declare BankCount int local 5
	/if (${Param0}) /varset BankCount ${Param0}
	/echo changing ${BankCount} items in bank to public view
	
	/for i 1 to ${BankCount}
		
		|/notify GuildBankWnd GBANK_ItemList listselect ${i}
		/notify GuildBankWnd GBANK_ItemList listselect 1
		/delay 30
		/notify GuildBankWnd GBANK_WithdrawButton LeftMouseUp
		/delay 10 ${Cursor.ID}
		/autoinv
		/delay 15 !${Cursor.ID}
		/autoinv
	/next i

/return

EDIT3: the delays can be lowered just that in this quickie version I erred on the safe side.
 
Request - LOOKING FOR A SIMPLE MACRO TO EMPTY A GUILD BANK OUT

Users who are viewing this thread

Back
Top
Cart