Clan Stash Management Script (?)

Turtle Juice

New member
I've searched high and low for this and haven't found it ... although a post about it is likely right below this one.

Has anyone done this?

Something that either pulls and auto-sells everything over a certain quantity or divides between that an mall...

Thanks!
 

mredge73

Member
I built one, I just haven't made it available since it is customized to fit the needs of my clan and not very configurable.

Try it at your own risk! This is an unfinished script and hasn't been updated in a while. I used to run it once a month on my clan but I haven't in a while. Requires My Function and Item libraries (follow link in sig)
It is designed to loot everything from your clan stash and then autosell or mallsell everything in your INVENTORY. You should be karma exempt to use this.

You need to edit these two lists in the Item script to fit your clan's needs:
ClanKeepList(); these items are kept in the clan stash
DontSellList(); these items are not processed

I also use it for contest looting so when it asks you for an input enter 0 for a full clan loot. It will also create and donate dense meat stacks back to your clan over 500K meat in your INVENTORY.

If in doubt don't use the script!
 

Attachments

  • MrEdge73's Clan Looter! (Beta) .ash
    12.2 KB · Views: 95
Last edited:

Enameless

New member
So would the ClanKeepList(); be added on after line 340 and if so how exactly would it be added? item name; or some other format. If not do I just create a ClanKeepList.txt?
 

mredge73

Member
It starts on line 282 in MrEdge73's Support Script -- Item Lists (Beta).ash

ClanKeepList lets you specifiy what you want to keep in the clan stash and how many. Example:
SaveInClanStash [$item[scrumptious reagent]] = -1; //Keep All
SaveInClanStash [$item[ring of conflict]] = 10; //Keep 10

The DontSell list will keep the script from selling things that are in inventory. Example:
DontSell [$item[bugbear bungguard]] = 1; //keep 1
DontSell [$item[vial of Gnomochloric acid]] = -1; //keep all
 
Top