Search results

  1. asturia

    Bug Mafia connects when proxy is not available.

    I'm using a proxy server so that Kolmafia does not connects while I'm on certain networks. Lately Kolmafia connects even tough I have configured that it needs to connects to a proxy first. It seems that it figures out that it can't connect to the proxy and then proceeds to login me in anyways...
  2. asturia

    Bug - Fixed No Character pane in web browser

    The character pane in the web browser is not loading anymore. This happened with build version r9653 With build r9652 everything works fine.
  3. asturia

    Fortune Cookie Counterscript

    Revision: 7104 Author: jasonharper Date: 21:00:52, dinsdag 24 maart 2009 Message: Adds an override for handling expiring counters during automated adventuring. Set counterScript to the name of an ASH script containing a function: boolean main( string name, int remain ) name - the label of the...
  4. asturia

    simplifying script

    Is there a way I can simplify this script?: void mayfly() { if ( get_property("mayfly_active") == "false") { if (equipped_item ($slot[acc1]) == $item[mayfly necklace]) { cli_execute("remove mayfly bait necklace"); equip($slot[acc1],$item [natty blue ascot]); } if (equipped_item...
  5. asturia

    Call consult script from another consult script.

    I have 2 consultscripts that deal with different things. One is this: void main(int initround, monster foe, string url) { int puttycounter = get_property("spookyPuttyCopiesMade").string_to_int(); if (puttycounter < 5) { if (item_amount($item[spooky putty sheet]) > 0) {...
  6. asturia

    Snowcone summoning

    use_skill( 1, $skill[Summon Snowcone]); This command used to summon 3 snowcones but with the new change to the tomes it only summon 1 snowcone anymore. Even when you call the command multiple times, it only summons a snowcone once. So it doesn't matter how many times you try to summon snowcones...
  7. asturia

    Script to summon Daily Noodles, reagents, coctail items,...

    This script verifies and summons all items that you can get: Dry noodles, Hilarious items, Tastefull gifts. It does not include candy hearts or the divine items. I made it so that I don't have to rely on the kolmafia setting for this, I always forget the setting before I go into SC ascension...
  8. asturia

    Display Case Script an autosell script

    Hi All, I have this script that puts all of the items I get from the McPhee's Grimoire of Hilarious Object Summoning in my displaycase. Since the latest update that changed stuff in the fuzzy match searching, the script doesn't do anything. Anyone has an idea how I can change it so that it...
  9. asturia

    slow execution of script

    When I use the following script it executes very slowly. But when I just tell kolmafia by hand to adventure in that location, it goes very fast. Does anyone has an idea what is causing this? import </subscripts/restorehp.ash>; import </subscripts/snowcone_buff.ash>; import...
  10. asturia

    My Daily script

    This is the script I run on my farming character. It does the following: cast my daily summonings, eat my food and drink my booze. request necessary buffs and then spends all of my adventures. It then sells all of the items before it drinks a final drink. If you notice anything that could be...
  11. asturia

    not working ascension preparation script

    I have this script I use to prepare for my ascension. It always worked for my previous attempts but now it doesn't work anymore. Can anyone quickly verify it?
  12. asturia

    guys made of bee pollen script

    I have changed my twinkly wad script with the following, but I'm not sure if it will work or not. Can someone verify if I didn't make a mistake? int tobuy = 0; int pollenused = 0; int countpollen = 0; if( item_amount( $item[guy made of bee...
  13. asturia

    wasabi sinus buff script

    Okay here is the problem: untill daily build 2121 this worked fine, but when using build 2138 it doesn't work anymore. the script calculates and buys knob goblin nasal spray en mass and uses them. With the latest daily build it just buys 1 for some reason. If anyone can help me rewrite it so...
  14. asturia

    buff script

    This is a part of my buff script, but it fails when I do not have enough mp to cast it. can anyone have a look at it and give me some recommandations on how to improve it? while( have_effect( $effect[leash of linguini]) < my_adventures()) { restoremp(); int amountleft = my_adventures() -...
  15. asturia

    Breakfast Script

    Since the breakfast command does not work anymore in kolmafia 7.1 I've made the following script. Untill now I checks wether you have one of the breakfast skills (pastamancery, advanced saucecrafting, summon snowcone, hilarious objects, advanced cocktailcrafting). It doesn't use the toaster nor...
  16. asturia

    Daily adventure script

    I've wrote a script that does different things: Eat my daily food adventure create items and sell them to the mall perform the needed buffs performs sleep ritual this happens for my 3 characters. for 1 character (asturia) a lot more things happens: same as above use the new knob laboratory...
Top