Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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)
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.
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.
#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.
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.
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.
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.