DiscoDancing
New member
anyone else getting "Expected ;, found + (zlib.ash, line 222)" with the new zlib? also i'm running the most recent kolmafia
I got the same error message, but with the newest daily build it works perfectly.
anyone else getting "Expected ;, found + (zlib.ash, line 222)" with the new zlib? also i'm running the most recent kolmafia
A much more elegant solution is the one that is built into the script. Open up your vars file and add a line:
Code:farm_skip_Haunted_Pantry true
Elegant it is,thanks. Just run it now - it decided that the bugged bugbear pens are the way ahead now >_< this after having to tell it not to use hobopolis/slime tube - farmer is non-guilded...
If this continues to remain in its current state, I will be considering requesting a refund.
.. which will eventually be so out of date that it won't understand the content of you inventory, won't have the newest (and better) farming locations, won't know about newest foodstuff, changes in mechanics, effects of new skills, ...a old "farm.ash friendly" version of mafia
Yes, but that is a fault with can_adv since it does not have any way to detect if you have access to those zones. I had the same problem with mine and added in "return false" for those since I do not plan to buy a basement for said multi.
Request 1 of 129 (MusSign: Bugbear Pens) in progress...
You can't get to that area.
// signs
case $location[Thugnderdome]: if (!primecheck(25)) return false;
case $location[Pump Up Moxie]: return (in_moxie_sign() && can_adv($location[south of the border],prep));
case $location[Pump Up Mysticality]:
case $location[Outskirts of Camp]: return (in_mysticality_sign());
case $location[Camp Logging Camp]: return (in_mysticality_sign() && primecheck(30));
case $location[Pump Up Muscle]: return (in_muscle_sign() && checkguild() && perm_urlcheck("plains.php","Degrassi Gnoll"));
case $location[Post-Quest Bugbear Pens]: return false;
case $location[Bugbear Pens]: return false;
case $location[Spooky Gravy Barrow]: return (in_muscle_sign() && primecheck(40) && (have_familiar($familiar[frozen gravy fairy]) ||
have_familiar($familiar[flaming gravy fairy]) || have_familiar($familiar[stinky gravy fairy])));
int [item] inventory = get_inventory();
batch_open();
foreach i in inventory
{
if (display_amount(i) > 0)
{
print ("placed "+i+" x "+item_amount(i)+" in display case");
put_display( item_amount(i), i );
}
}
batch_close();
int keep_amount=3;
int inv_amount;
int shop_amount;
int [item] inventory = get_inventory();
batch_open();
foreach i in inventory
{
if (shop_amount(i) > 0)
{
inv_amount=item_amount(i);
shop_amount=inv_amount-keep_amount;
if (shop_amount > 0)
{
print ("placed "+i+" x "+shop_amount+" (of "+inv_amount+") in mall");
put_shop(0, 0, shop_amount, i );
}
}
}
batch_close();