Either your computer is really slow or there's something wrong because it runs in seconds.
My computer is not slow at all, it's an imac.
As to weather something is wrong or not, it keeps checking store inventory, and I don't have a store.
You have 77 filthy lucre worth 3,900 each for a total of 300,300
I lol'dYou have 1 gnauga hide chaps worth 1,000,000 each for a total of 1,000,000
Using today's networth.ash (29 Sept 2009). Received the following:
> call G:\KoL Mafia\scripts\To Try\Networth.ash
Illegal amount of parameters for function is_tradeable. Got 0, expected 1 (Networth.ash, line 73)
Same behavior on r7635 (exe), v13.5, and r7670(jar) using Java v1.60_15-b03.
Not sure how to fix it.
if (amount > 0)
{
if (is_tradeable())
{
int price = 0;
if (historical_age(it) > 7)
if (amount > 0)
{
int price = 0;
if (is_tradeable(it))
{
if (historical_age(it) > 7)
foreach it in $items[]
{
int amount = available_amount(it) + shop_amount(it) + storage_amount(it);
if (use_display) amount = amount + display_amount(it);
if (amount > 0)
{
int price = 0;
if (is_tradeable(it))
{
if (historical_age(it) > 7)
price = mall_price(it);
else
price = historical_price(it);
price = max(0, price);
if (((price == 0)|| (price > 5000000)) && (is_tradeable(it)))
price = mall_price(it);
if ((price == 0) && (autosell_price(it) > 0))
price = autosell_price(it);
}
if (price > 0)
{
print("Considering "+it+"...");
all[itcount].it = it;
all[itcount].price = price;
all[itcount].amount = amount;
}
itcount = itcount + 1;
total = total + (price * amount);
}
}
removed "else price = 0" as redundant.