Search results

  1. T

    Make.meat.fast

    This probably does not matter to most, but the release notes for r7858 states (among other stuff): So that would be cli_execute("maximize adventures");
  2. T

    Make.meat.fast

    Why would you want to limit the item drop to 100%?
  3. T

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    From the session log, I extracted everything from the call to eatdrink.ash until I aborted the script and put it in the attached zip file. Hope this helps.
  4. T

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    I noted that the value of an adventure is taken from the settings folder instead of the data (vars) folder. I changed the code slightly (added last two lines) to use the lessor of the two values. int VALUE_OF_ADVENTURE = to_int(get_property("valueOfAdventure")); if...
  5. T

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    Still loops. Failed when trying to buy Pie. Using latest build and just posted script. > Checking for updates (running EatDrink ver. 3.0)... > You have a current version of EatDrink. > Loading favorite consumables from user settings... > adding favorite: rockin' wagon > adding favorite: pr0n...
  6. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    Thanks, Grotfang, for your response. I will look through those forums.
  7. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    I am just trying to understand your reasoning! If you like a flying gravy boat and someone else likes a submerged one, I would like to understand why so I can address the implications as to my character and style of play.
  8. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    So, of the listed familiars (let's assume first ascension and these are all you had to choose from) which is best for a HC run, a BM run, and a SC run? Please justify your response. Leprechaun, Mosquito, Angry Goat, Barrrnacle, Sabre-Toothed Lime, Levitating Potato, Baby Gravy Fairy, Blood-Faced...
  9. T

    Ash functions

    Zarqon and Bale - Thanks for the code!
  10. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    So you either chose to run softcore for a while or hardcore for a while. The motivation for HC is the ascension gifts. What is the motivation to go back to SC except to SC perm everything or to play the lower levels using pulls?
  11. T

    Ash functions

    How do you know if a demon has already been summoned today? I want to add that check to my code. (The get_property() part is the only untested portion but it is the right number for greed.) if (get_property("demonName2") != "") { #summon greed demon - buy only those things needed - candles...
  12. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    One question first. Can you use the permed softcore skills in a hardcore run?
  13. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    Well, that does make sense and would well explain why one does not exist.:D Having not yet ascended I am trying to come up to speed on this kind of stuff.
  14. T

    ascensionChecklist.ash: Make sure you have the items for a painless run

    Is there a hardcore version of this?
  15. T

    Make.meat.fast

    Do you mean you want the script to select the buffs and use items for effects based on the location to be farmed, and maybe even the monster you are facing? How do you propose to let the script know what you are interested in: meat, certain items (like recipe components), certain stats, ... I...
  16. T

    EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

    If you are looking for EatDrink.ash to not look at the stats, I do this by opening the vars file located at (at least on my machine) C:\Program Files\KoLMafia\data. Find the file named vars_XXXX.txt where XXXX is the character name. Find the following lines: eatdrink_valueOfNonPrimeStat 2...
  17. T

    Make.meat.fast

    It sounds like some variable or parameter was set the first time through, and now something does not know what to do with it. The only problem I have is the occasional endless loop in eatdrink when there is a problem with the price while drinking. (Running XP, latest mafia, latest scripts)
  18. T

    Need help with while (have_effect($effect

    Nice piece of code. It accounts for some things that I had not. (None of the characters have ascended, so I did not have to deal with some of the possibilities yet.) As an assembly coder, I am still learning the higher level languages. As a quality engineer, I like the structure. Thanks for the...
  19. T

    Need help with while (have_effect($effect

    I like statistics, so I was gathering data on the response time of the bot to buff requests. I figured that if the normal response time is 35 to 45 seconds, then a 5 second sampling would give me the resolution that I needed for a Pareto chart. Then, knowing the typical response time (4-sigma...
  20. T

    Need help with while (have_effect($effect

    Interesting to note that the cli_execute( "wait 5" ) gives a countdown in the session log whereas the wait( 5 ) does not. I am okay with that. It was just interesting to note.
Back
Top