Search results

  1. E

    bumcheekcend.ash - A zero setup semi-automated ascension script!

    I get the same error in my script. I believe it comes from the KoLMafia function tavern(), but I could be wrong. You get a similar error when typing "find talisman o' nam". Well, maybe not similar since one is a 404 adventure error and the other is more of a "creating this item went wrong"...
  2. E

    Thoughts on My New Softcore Ascension Item Handling

    Actually, your response is quite helpful as it touches on something I wasn't planning on doing, but maybe should, which is saving the map as a data file. Since I don't see myself tackling the problem of writing a relay script any time soon, I was planning on just generating the map when each...
  3. E

    Thoughts on My New Softcore Ascension Item Handling

    Intro: Hello, I am looking to re-write how my Softcore Ascension script handles items to allow for more versatility and easier scaling up. Background: Currently, if you have ever looked at my ascension script item pulls (please don't :(), it is a complete mess of if statements. At the time of...
  4. E

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    Hmm, might be the last part Theraze. I had randomly picked up the spices from one of the new gift packs. My guess is Mafia thought I had them in my inventory when in reality they go to storage (I think). Nice catch.
  5. E

    Trouble using visit_url to play Skeeball

    Interesting, thanks for the solutions! :) For future reference, what is the difference between POST and GET? When would I want to use one over the other?
  6. E

    Trouble using visit_url to play Skeeball

    I am trying to play Skeeball using a Game Grid Token by using the visit_url command. I got a Game Grid Token and typed ash visit_url("place.php?whichplace=arcade&action=arcade_skeeball") into the CLI. Instead of giving me my 10 tickets, I lost 5 adventures and my token with nothing to show...
  7. E

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    I auto attacked it once after it did the initial 3 shot thing and it died, so 20 or less HP leftover. I have noticed it seems to have trouble against enemies that have high physical resist. I think it doesn't calculate elemental damage on weapons very well. It will often abort on the protector...
  8. E

    Mood Management

    Yeah, I do that for +-combats. I just didn't want to add 66 mood_face() after my current mood when all I wanted to do was change facial expression to disco leer for nuns or suspicious gaze for the alcove. It would give more flexibility with which expressions are cast, so I may do it that way...
  9. E

    Mood Management

    Hmm that is interesting, but not really helpful for my current problem. I have a mood function which I call before my adventure function. This is great for 95% of adventures, but if I want to delete the facial expression and instead use say suspicious gaze, there is no simple way of doing it. So...
  10. E

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    Ran into an interesting problem with WHAM, fought a chalk wraith and WHAM went crazy.... [204] The Haunted Billiards Room Encounter: chalkdust wraith Strategy: C:\Users\Judson\Desktop\KoLmafia\ccs\WHAM.ccs [default] Round 0: Rohin loses initiative! You lose 4 hit points WHAM: Running...
  11. E

    Mood Management

    Is there an ash/cli command to remove 1 specific mood? Currently, if I want to change a mood, I have to clear the whole thing and rebuild it. This is annoying when I want to change facial expressions :(.
  12. E

    aliases

    Yeah, I assumed if people have PriceAdvisor then they have put the Alias it tells you to use. The difference between PAtoOCD.ash and the paocd alias is the alias doesn't change any settings, just gives you the info about the items, which I prefer. Then I get to choose what I want OCD to do...
  13. E

    Successful combat?

    I use this to determine if you are in a non-combat. repeat { if (contains_text(fight, "choice.php")) { cli_execute("choice-goal"); fight = visit_url(loc_url); //Check to see if in a choice adventure } } until (!contains_text(fight, "choice.php"));
  14. E

    aliases

    Hey, just came across this thread and figured I'd post an alias I just wrote. If you use OCD Inventory Control and have PriceAdvisor then you can use this alias to show PriceAdvisor's advice for all your currently uncategorized items. You have to first have the PriceAdvisor alias set. alias pa...
  15. E

    Why does my autorecovery fail?

    Just throw a simple code at the start of your breakfast script if (can_interact()) cli_execute("set recoveryScript = Universal_recovery"); else cli_execute("set recoveryScript = "); Veracity, at the time I was messing with mafia's recovery, I was brand new to KoLMafia. I had no idea...
  16. E

    Why does my autorecovery fail?

    Honestly, I have no clue why it fails. It has been something that has frustrated me a lot in the past though. Bale's script took care of most of that, but even it fails to deal with some cases of beaten up that will cause an abort. I tried to make it consider other options/not abort, but for...
  17. E

    Bug - Not A Bug Filthy Poultices not Acquired through Hippy Store

    Well that fixed it, I guess I had it on and my option got changed. Sorry about that and thanks Veracity.
  18. E

    Bug - Not A Bug Filthy Poultices not Acquired through Hippy Store

    No, don't think I have had coinmasters on at any point (now or in the past), but I could try that.
  19. E

    Bug - Not A Bug Filthy Poultices not Acquired through Hippy Store

    I used to be able to type "find X filthy poultice" into the CLI and it would buy them through the hippy store. Now it just gives me "You need X more filthy poultice to continue" which is also the only thing it says in the debug report. I have dimes and wearing the hippy outfit with buy from...
  20. E

    Why does my autorecovery fail?

    Recovery tends to fail a lot. It fails a lot less if you use Bale's universal recovery script but it will sometimes fail even with that.
Back
Top