Richo the Dino
Member
Heyas,
So, I have been looking at Networth.ash and gotten a few ideas, but I'm generally now trying to have a check that will
* run through my whole inventory looking for items where the number of items > 50
* report back via print commands that this is the case
* and perhaps (via some sort of query on the autosell amount for an item) work out how much selling this junk would net. (don't actually want to autosell them, just start to get notified that a large amount of goods are starting to accmulate. That it's time to think about selling or pulverizing them.)
I'm sort of thinking along the lines:
foreach item_name in $items[]
{
if (item_amount($item[item_name]) > 50)
{
print: "You have over 50 " + item_name + "(s)");
print: "They would be worth " + check_worth_of_[item]_somehow + ", if autosold.");
}
}
Once again, I appreciate the help
Everytime I finish a script I think of a better, more complicated way, to do something the next day...
So, I have been looking at Networth.ash and gotten a few ideas, but I'm generally now trying to have a check that will
* run through my whole inventory looking for items where the number of items > 50
* report back via print commands that this is the case
* and perhaps (via some sort of query on the autosell amount for an item) work out how much selling this junk would net. (don't actually want to autosell them, just start to get notified that a large amount of goods are starting to accmulate. That it's time to think about selling or pulverizing them.)
I'm sort of thinking along the lines:
foreach item_name in $items[]
{
if (item_amount($item[item_name]) > 50)
{
print: "You have over 50 " + item_name + "(s)");
print: "They would be worth " + check_worth_of_[item]_somehow + ", if autosold.");
}
}
Once again, I appreciate the help

Last edited: