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.

Can you delete your /Lua/tsc folder and redownload?also chain spamming this
View attachment 70694
I think its trying to get something out of the bank, but there's nothing that says who is trying to get what, so i dont know how to help it along
I am not getting any pop up window when using the "All give to..." button. I do get that window when I use the "select" buttons beneath the "Give all items" column.I can't find anything wrong with it. Do you see this pop-up?
View attachment 70695
I'll DM you.I am not getting any pop up window when using the "All give to..." button. I do get that window when I use the "select" buttons beneath the "Give all items" column.
Strange. I can't replicate this. If a toon's bank is full, it should stop immediately and give you a message that it's full. I just tested it. Could something else be happening?I am getting this error when ever the bank becomes full.
View attachment 70701
Just picked up this lua this morning, and worked wonders moving all the TS and Collectibles from mt 18 toons onto 2 toons 1 for each.
I am adding messages on the main toon to help make it easier to see who is doing what.also chain spamming this
View attachment 70694
I think its trying to get something out of the bank, but there's nothing that says who is trying to get what, so i dont know how to help it along
What matters is the ownership of the item in the plot. An item is owned by the person who deposited it, regardless of whose plot it is. TSC will see all a toon's items, even if they are in a plot they don't own.I also have a question on how or does the lua work with plots that the toon is a co-owner of.?
So I put an event in to catch these happening, and it was increasing the delay by 100 from the base 1000 every time it caught the response. When I am doing a ton of deposits, it makes a big difference in spam. Let me know if you would like this as a github pull request (if that is available) or would prefer to program it yourself if you want to make that change. At times it was gettign up to a 2500 or 3000 delay on my toon that has almost 2000 TS depot slots. 

I think this is an issue with latency and how fast the server processes requests, because sometimes this happens, and othertimes it works smoothly.I am having a tiny issue, which I had solved with some custom coding to increase the delay when depositing items into the TS Depot. I constantly get spammed with these replies from the banker, making people think we are about to resort to fisticuffs between me and the bankerSo I put an event in to catch these happening, and it was increasing the delay by 100 from the base 1000 every time it caught the response. When I am doing a ton of deposits, it makes a big difference in spam. Let me know if you would like this as a github pull request (if that is available) or would prefer to program it yourself if you want to make that change. At times it was gettign up to a 2500 or 3000 delay on my toon that has almost 2000 TS depot slots.
View attachment 71535
Correct, all toons must be on the same PC. I will specify that in the description. I've never had someone try this with multiple PCs. Thanks.Just purchased this - exciting to see if it works.
First attempt - tried it with 54 Toons spread across 3 computers. It failed - All toons need to be on same PC.
Second Attempt - Tried it with 20 toons on One PC.
Failed with some items:
View attachment 71703
No idea what that is. Ill have to try some experimenting or self cleaning on that toon to see if i can find something.
Overall though - excited to try and get this working.
Correct, all toons must be on the same PC. I will specify that in the description. I've never had someone try this with multiple PCs. Thanks.
I've seen a couple of others report the invalid slot error, but I cannot replicate it. Do you have any other info? Did it work on a second try? Does it always get stuck on the same item?

@zhire @SzazorJust want to say that It will work on Muliple PC's, as I have had it consolidate all my ts mats and collectibles accross my 3 pcs.
@zhire @Szazor
This is interesting. I guess I meant to say that I don't officially support multiple PCs. But it could be possible if you copy the right files! I'd be curious how you set it up Rojadruid.
Thanks for the suggestions Szazor!
That would probably help. On the one character with 2000 TS depot slots is the one it hits the most. I would still like the delay to scale, because on the other characters, the 1000 delay works fine. It is just because ths one character has so many slots I think. Maybe have the starting delay be adjustable, then scale it up if you start getting spam from the banker?I think this is an issue with latency and how fast the server processes requests, because sometimes this happens, and othertimes it works smoothly.
I'm thinking of adding a UI setting where you can manually adjust the delay yourself. Do you think that would be helpful?
Haha. I don't get how it works.tbh I made no changes. I just happened to notice one day that if I had all my toons in 1 zone and was consolidating it stared moving and pulling from the toons on the other pc's as well.
Haha. I don't get how it works.
If you have TSC on all computers, it would find the appropriate scripts.
But, it wouldn't find the correct config files that are generated after the scan phase.
Weird. Glad it's working; but it confuses me![]()
That's really weird. Do you have an augment with the word "Ale" in it that is also a tradeskill item?


when they added cash loot tag it broke things. I was able to fix it.anyone able to get this to work fully? i was able to get the look up to search correctly but its not auto banking at all
MQ\lua\TSC\scripts if item.NoDrop() or item.Container() ~= 0 or not item.Stackable() or item.Lore() or item.NoRent() then
skip = true
--print('\at[TsC]\ao Skipping \ay'..name..'\ao because it\'s nodrop, lore, etc.')
end
update, its because they added a "CASH LOOT" on inventory filter. Its probably indexing a value in filter and missing by 1 cause of the added option.Program is giving away cash loots when you do collectibles
local args = {...}
local itemType
if args[1] == 'Tradeskill' then
itemType = 42
else
itemType = 21
end
