Search results

  1. T

    Reading half of the Strange Leaflet

    No, you only get to say one magic word per ascension. If it wasn't the right one, then you're out of luck.
  2. T

    Adventure Function Library

    To see how to get the continuum transfunctioner with CLI, check out my "Welcome to the Kingdom of Loathing, Noob" script in the quest area. It unlocks lots of the early quests like that, so you can grab the CLI commands. Thank you for your kind words about my library. I am half-intending it to...
  3. T

    Features I wish ASH supported...

    Yeah. the fifth item is more specifically attuned towards knowing if it's a good idea if running a quest would be a good idea. I mean, you can tell if you need to get the abridged dictionary just by checking to see if you can adventure in the Valley, but there's no clear way to know if you...
  4. T

    Features I wish ASH supported...

    Turning the scripting language into C or Java is more than I want to ask for. I think it's powerful enough to do whatever we could want to do. But I would like to see more library functions to give us wider knowledge of the Kingdom. Here's my first stab at a list of CLI/ASH functions I'd love...
  5. T

    Tavern (ASH)

    The tavern command is fixed for 7.2. And, just for the sake of code bloat: :D cli_execute("tavern"); cli_execute( "rats.php?action=faucetoff"); cli_execute("town_wrong.php?action=whisker"); The extra line will sell your rat whiskers to the Pretentious Artist, provided you completed that...
  6. T

    Spooky Gravy Barrow script

    This script takes care of the Spooky Gravy Barrow quest for you, starting from the point that the Mayor tells you to go off and do it. It assumes that you have one of the enhanced gravy fairies equipped. I'd do that for you, but I'd hate to choose a light one or one that you didn't have the item...
  7. T

    Removing commas from int_to_string?

    It's true that this script is impacted by seeing Holatuwol's sample on the main forums. My original version wasn't quite this pretty. However, my original version was more correct. ::) The script I posted earlier doesn't parse numbers like 1000 correctly. Gee, I was wondering why I was having...
  8. T

    Removing commas from int_to_string?

    string my_int_to_string (int number) { string foo; foo = int_to_string(number % 10); while (number>10) { number = number/10; foo = int_to_string(number % 10) + foo; } return foo; } void main() { print(int_to_string(1234567)); print(my_int_to_string(1234567)); }
  9. T

    Ascnesion break-down

    Keep It Simple, Stupid. :D
  10. T

    Ascnesion break-down

    Even if it did, you could echo your request to a temp file and then write a daemon (in Perl or something) that would notice the existence of that file and modify the combat commands based on it. But I don't know what it would take to get the modified file to get imported into your session. Is...
  11. T

    simple Haunted Pantry Script.

    That last point needs to be underlined. An ash script called "quest.txt" will NOT run -- it has to be called "quest.ash".
  12. T

    My CLI/ASH Question Post

    I'm the wrong person to ask about that. I'm actually a little surprised that I managed to get it to work for me, much less walking someone else through it. Sorry. ???
  13. T

    Reading half of the Strange Leaflet

    I like to leave the Strange Leaflet for stat days because, hey, extra 100 stat points. But then I can miss out on a day or two of enjoying an actual house in my campsite. I know that Veracity's script gives the power to save the magic words for another day, but I know that I wouldn't remember...
  14. T

    My CLI/ASH Question Post

    KolMafia 7.2 will have these features, and a bunch more really nice things. It is in beta test mode right now, and it's hard to predict when it will clear. Choice adventures are hard-coded, so there's no way to trick 7.1 into playing nice with the new content. You could download the source and...
  15. T

    fighting script

    It wouldn't be a script, but I think the following would work in the Custom Combat tab. [e] item meat vortex item meat vortex item meat vortex (29 of these...) item meat vortex attack This would do what you wanted for any opponent that had "e" in its name. I guess you could add a few more of...
  16. T

    Ascnesion break-down

    It would be interesting to have a contest where everyone sends in a mega-script and each of them is run on a character who is ascending hardcore for the first time. I imagine that the winner would take well over two months to complete without any human intervention, but as turtle races go it...
  17. T

    Abridged Dictionary - version 1.3! (last updated May 4)

    Re: Abridged Dictionary I've been doing a lot of scripting over the past weekend, but it's a bit tricky to keep up with the 7.2 beta testing AND make sure that the scripts are good enough to show off to colleagues. Anyway, here is the first of a few shiny-new scripts. Buoyed by Veracity's...
  18. T

    Mushroom Field Scripts

    These scripts are confuzzling me. I bought a plot and ran the day 4 script, and then the next day I ran the day 1 script, which picked all of the mushrooms that I picked the day before and so there was nothing left to generate any second-generation mushrooms. Am I misunderstanding the instructions?
  19. T

    My CLI/ASH Question Post

    It's easy enough for you to check yourself, but I doubt that it will work. My suspicion is that CLI will parse "chow mein" to a specific item , and then be upset that you don't have three of that item. I don't even think the following would work: cli_execute("eat chow mein") cli_execute("eat...
  20. T

    Some general questions.

    Oh. (goes on to other thoughts for a few days) :o OH! Yes, that does very very nicely. Thank you for explaining it to me again.
Back
Top