Search results

  1. That FN Ninja

    Feature New numeric modifier: prismatic resistance / all element resistance

    Yeah, Lord Spookyraven is what originally got me thinking about this, but it seems like something that could be useful in a variety of circumstances.
  2. That FN Ninja

    Feature New numeric modifier: prismatic resistance / all element resistance

    Well, I thought there was a prismatic damage modifier, but now I can't find it!?! I could have sworn I saw one, but I guess I must have been seeing things!! I guess this is a request for two modifiers then. prismatic damage & prismatic resistance.
  3. That FN Ninja

    Feature New numeric modifier: prismatic resistance / all element resistance

    A numeric modifier that tracks the amount of resistance one has to all elements. Like the prismatic damage modifier, but for all element resistance. Edit: There is no prismatic damage modifier. My eyes were just playing tricks on me. So, two new modifiers then: prismatic damage & prismatic...
  4. That FN Ninja

    hatter.ash - Tea anyone!?

    Thanks. Update in the first post.
  5. That FN Ninja

    Easy (and probably dumb) question re: switch()

    Bale's code is the best way given your first example, but under other circumstances one could also use plural typed constants: int x = 15; boolean[int]range = $ints[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; switch{ case $ints[11, 12, 13, 14, 15] contains x: print("func_x"); break; case...
  6. That FN Ninja

    Dwarven Factory - Factory puzzle solver

    You're welcome sir!;) Who knows... maybe someday I'll get the dwarvish war uniform myself. The good news is that I ascended for the first time earlier this month and I will now pretty much be hardcore for life! The bad news is I already opened the DoD and forgot to get the hobo glyph in the...
  7. That FN Ninja

    First (real) attempt to make an ash script: Sewer.ash

    Seems like a matcher would be a lot easier. Like the following: int grates(){ int grates; matcher parser = create_matcher("sewer grates? \\((\\d+) turns?", visit_url("clan_raidlogs.php")); while(parser.find()) grates += parser.group(1).to_int(); return grates; }I don't know a ton...
  8. That FN Ninja

    Crimbo 2010

    I think heeheehee already adjusted Zarqon's matcher to work for both full and compact:
  9. That FN Ninja

    Pre-Hobo Boss Item Buffs (Alpha)

    Looks useful. After looking through the code I did notice some things however. 1. The arena buff is not being detected correctly. Unless I'm missing something lines 349 & 350 will always be false. I think the valid settings for the sideDefeated property are neither, both, hippies, fratboys...
  10. That FN Ninja

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

    I think equip is the keyword you would need. This should work: cli_execute("maximize hp -equip sugar shield");
  11. That FN Ninja

    What was YOUR last encounter?

    The property lastEncounter For ash scripting use get_property("lastEncounter");
  12. That FN Ninja

    TraFa - The familiar helper

    You're welcome. ;) I usually use this function on my current familiar. Or as a way to switch familiars and feast at the same time. I see no good reason to switch back to the previous familiar. The buffs get reset at rollover anyway so there really is no reason to gorge a familiar unless you are...
  13. That FN Ninja

    TraFa - The familiar helper

    Update 1.6 Re-factored code Added special handling for the Mini-Hipster. Fixed a bug that was preventing arena-handicapped familiars from being trained properly. In decided whether to use the arena to get an arena-handicapped familiars equipment or to just buy it, the cost of getting it in the...
  14. That FN Ninja

    Miner.ash - Automated ore farming

    It was clear, it's just that the first time I got back online to see your post the other posts where already there as well. Anyways, so thanks again. Update 2.31 Re-factored code to save server hits when dealing with caverns that are already partially mined.
  15. That FN Ninja

    Miner.ash - Automated ore farming

    Sorry. I forgot about the different images. Fixed and re-uploaded. Thanks.
  16. That FN Ninja

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

    Here's the current open_temple() function I'm using. It uses visit_url until you have the sapling. You can see that before the changes it was only a few lines long. Once KoLmafia features enhanced goal handling for the Spooky Forest it will be short again. I'm off to school, but I think you...
  17. That FN Ninja

    Miner.ash - Automated ore farming

    Offer a Mr. A and ye shall receive. I stayed up after school scripting this, but was too tired to post it last night. I had a solid 9 hours of class time yesterday! Brutal Tuesdays. Update 2.3 Added the free_mine() function. It uses the 5 free mine attempts granted by the skill Unaccompanied...
  18. That FN Ninja

    Miner.ash - Automated ore farming

    That's the next thing (and currently the only) on the implementation list. So the next update will be just for a free mine function.
  19. That FN Ninja

    Dwarven Factory - Factory puzzle solver

    Yeah, that or more indicative of the sentiments of the scripts user base: "Dwarven Factory without the headache way!"
Back
Top