• 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 - So, who's planning to write Restack.mac?

teslatrader

Member
Joined
Feb 16, 2011
RedCents
639¢
With the new stack sizes, I figure someone out there is writing a restack.mac that will go through your bank and combine all possible stacks to free up bank space. If so, consider sharing. :rc :)
 
With the new stack sizes, I figure someone out there is writing a restack.mac that will go through your bank and combine all possible stacks to free up bank space. If so, consider sharing. :rc :)


Can you post a copy of it, Ill look at it since no one else has bitten on it.
 
dont know if this would work

untested though.

Rich (BB code):
#turbo 40

Sub Main 
   /call Stacker

/return

Sub Stacker
   /echo Restacking Stacks in bank
   /declare I int 
   /declare M int 
   /declare N int 
   /popup Autobanking all stacks 
  /for N 1 to 24
      /varset M ${Me.Bank[${N}].Container}
      /for I 1 to ${M}
         /if ( ${Me.Bank[${N}].Item[${I}].Stackable}) {		
			/if (${Me.Bank[${N}].Item[${I}].Stack} < ${Me.Bank[${N}].Item[${I}].StackSize}) {
				/squelch /nomodkey /shiftkey /itemnotify ${Me.Bank[${N}].Item[${I}].InvSlot} leftmouseup
				/delay 5
				/autobank
			}	
		}
      /next I
   /next N
   /echo Done
   /popup Done
/return

fixed the missing bracket, go ahead and use it now, i used it n my inventory, beware if you dont limit bags(N Variable) it autobanks all stakcks if they not maxed even single items that can stack. but i dont know how to determine if you that item moved or not, i suppose culd make a list of items that have 2 or more stacks that arent complete then autobank only them, but thats slightly above my paygrade i am afraid, i could probably get it working eventually but for now limiting to n 1 to 2 takes care of my ffirst 2 tradebags.
 
Last edited:
If you take your bag and control + left click on another bag it will start stacking all the items. So in theory if you have like 20 bags of TS items you can consolidate in 20 clicks rather than dropping each item into a stack. Just an FYI. :cool:
 
If you take your bag and control + left click on another bag it will start stacking all the items. So in theory if you have like 20 bags of TS items you can consolidate in 20 clicks rather than dropping each item into a stack. Just an FYI. :cool:

Would it be 1+2+3+4+5+... etc clicks? Second back clicks on first bag. Third bag clicks on second and first bag, and so on?
 
the macro i wrote checks each slot if its a stackable item and if its a full stack. if the stack is not full it picks it up and autobanks its, and moved on to next item. i suppose it would work just as fast as right clicking bags adn picking up each bag.
 
Request - So, who's planning to write Restack.mac?

Users who are viewing this thread

Back
Top
Cart