Search results

  1. E

    Time-Spinner Far Future Solver

    Latest update introduces a breaking change - the "mall" command will now automatically mall sell the one item you replicated, at current mall price. This will also alter your store's current price, if you were already selling it. Hmm... Not sure what's causing that. For that area, it uses...
  2. E

    Bug - Fixed Mana burning cannot stand Disco Inferno's heat

    r17201 With the effect Disco Inferno active, mana burning aborts: (from hookah or golden dice) > burn 15 You don't have a skill uniquely matching "1 Disco Inferno" > ash $skill[Disco Inferno].have_skill() Returned: true > ash $skill[disco inferno].combat Returned: true The disco inferno...
  3. E

    Bug - Fixed NA inventory tracking for Backwards Knees

    In ResponseTextParser.java: else if ( skillName.equals( "Sucker Fingers" ) || skillName.equals( "Backward Knees" ) ) { ResultProcessor.processResult( ItemPool.get( ItemPool.RAD, -120 ) ); } The actual skill is "Backwards Knees", with an S, so this test fails, and the rads aren't removed...
  4. E

    New Content - Implemented Bounty Hunter Hunter update

    This one is still missing. You're on the trail of a Specialty Bounty! Come back when you've collected 10 empty rum bottles from filthy pirates on the Pirates of the Garbage Barges ride (You can reach this area by using a one-day ticket to Dinseylandfill.) You acquire a bounty item: empty rum...
  5. E

    Time-Spinner Far Future Solver

    Another game text change, which 1.0.5 handles. In your breakfast script: cli_execute("FarFuture tea");
  6. E

    Time-Spinner Far Future Solver

    "help" and "list" added as aliases. I thought about making it always print that help message if you don't specify a valid option, but that seems like it could be annoying? "asdfasdfasdf" probably means they just want to play through for medals. The in-game message changed, so it wasn't able to...
  7. E

    Time-Spinner Far Future Solver

    Unable to replicate Tea, Earl Grey, Hot. Re-run the script and pick something else (or nothing) to replicate. You haven't unlocked tea yet, so it can't be replicated. Try "FarFuture none".
  8. E

    Time-Spinner Far Future Solver

    What does it do? Far future will play through the Far Future mini-game once, replicating an item and earning two medals. Screenshot: How do I use it? Install it by running this command in KoLmafia's graphical CLI: svn checkout https://github.com/Ezandora/Far-Future/branches/Release/...
  9. E

    Feature - Implemented Time-Spinner

    You can walk away from the time spinner choice adventure, 1195. Currently: Encounter: Spinning Your Time-Spinner You are currently in a choice.
  10. E

    Feature - Implemented Time-Spinner

    Throwing the Time-Spinner in combat causes $item[time-spinner].available_amount() to be 0.
  11. E

    New Content - Implemented Protonic Accelerator

    Extra e typo in QuestManager.java: monsterName.equals( "The ghost of Waldo the Carpathiane" ) The ghost of Waldo the Carpathian Once/day, you can cross the streams by equipping a proton pack and clicking a button in the profile of someone else who has it equipped. This gives ten turns of...
  12. E

    New Content - Implemented Bounty Hunter Hunter update

    r17069 Haunted pullstring is missing its bounty number (13) in bounty.txt: filthy rag filthy rags hard dishrag.gif 8 Copperhead Club bartender The Copperhead Club haunted pullstring haunted pullstrings hard string.gif creepy doll The Haunted Nursery > ash $bounty[haunted pullstring] Bad...
  13. E

    Guide

    What does "get questL13Final" in the GCLI give you, if this still affects you?
  14. E

    Detective Solver

    Try updating and re-running. 1.1.1 has some code for temporarily extending its time limit.
  15. E

    Detective Solver

    If you're using this script, run this command: svn update Version 1.1 or newer should work. Previous releases aren't usable. The game's HTML changed, so parsing stopped working. Fixed.
  16. E

    Scripts on SVN

    I wrote a solver for the eleventh precinct. Can it be added? JSON: { "repo": "https://github.com/Ezandora/Detective-Solver/branches/Release/", "author": "Ezandora", "name": "Detective Solver", "forumThread": "http://kolmafia.us/showthread.php?20406-Detective-Solver", "shortDesc"...
  17. E

    Detective Solver

    What does it do? Detective Solver will solve all three daily mysteries for the eleventh precinct IOTM. Screenshot: How do I use it? Install it by running this command in KoLmafia's graphical CLI: svn checkout https://github.com/Ezandora/Detective-Solver/branches/Release/ Once it's...
  18. E

    Bug - Not A Bug Item Manager just won't show up

    When I rate-limit my download, builds.kolmafia.us seems to stop the download early. 10k, stops: % time wget --tries 1 --limit-rate=10k http://builds.kolmafia.us/job/Kolmafia/lastSuccessfulBuild/artifact/dist/KoLmafia-17039.jar --2016-07-02 10:17:27--...
  19. E

    Guide

    Try running "prefref sourceTerm" in the graphical CLI, or possibly "get sourceTerminalEnquiry". Does it output a bunch of HTML? This caused interference with the auto-update feature, and will be fixed.
  20. E

    Bug - Fixed Escaped backslashes in to_json()

    r17033 Example script: void main() { string input_string = "\\=\""; string [int] output_map; output_map[0] = input_string; output_map[1] = get_campground().to_json(); //to verify nested JSON string json = output_map.to_json(); print_html(json); } Output: { "0" : "\=\"", "1" : "{...
Back
Top