VariusAvus
New member
Hello! I'm really new to creating .ash scripts for KoLMafia and have no experience in Javascript (though, I do have very little experience in Python). I'm trying to create a script that can accomplish all my dailies with a single command. I think I've gotten it pretty much figured out but there were a few tasks I was having trouble with. I've been using the documentation on the KoLMafia wiki but I'm still having problems.
- I'm having a bit of trouble with checking the Jackass Plumber. Currently, I'm using just
but that doesn't work as it doesn't return anything indicating that I've actually checked the Jackass PlumberCode:
visit_url( "place.php?whichplace=arcade&action=arcade_plumber" );which proves itself to be the caseand simply indicates that the script was successfully executed. - I'd also like to use my Telescope at the Campground for the "Starry-Eyed" buff but I haven't been able to figure that one out either. Currently, I'm using just
-
but that doesn't seem to quite work. What's strange is thatCode:
visit_url( "campground.php?action=telescope" ); run_choice(1);
does work when I try to collect my daily volcoino.Code:if(outfit( "Smooth velvet" )){ visit_url( "place.php?whichplace=airport_hot&action=airport4_zone1" ); run_choice(7); print("You have recieved a Volcoino from the Tower."); } - This problem also falls into a similar vein as #2 on this list but I'd also collect one of each type of chip from our Clan Vending Machine. I've been using
and repeating those lines of codes 2 more times while changing the choice value but it doesn't quite work the first time. All it stated is that I visited the Vending Machine and the script was complete.Code:visit_url( "clan_rumpus.php?action=click&spot=9&furni=2" ); run_choice(0);