Search results

  1. That FN Ninja

    TraFa - The familiar helper

    @ Bazaaretw > alias efall => ash import <trafa.ash> getfamequip(); String successfully aliased. efall => ash import getfamequip()> efall Checking for updates (running ZLib ver. : 14)... _version_zlib => : 14 You have a current version of ZLib. Checking for updates (running TraFa ver. 1.4)...
  2. That FN Ninja

    TraFa - The familiar helper

    I didn't know about the 25% chance of getting the lead necklace. Thanks for pointing that out. I don't know how I missed that while I was creating this script. Next update will include it in the calculation.
  3. That FN Ninja

    Wang

    There are some useful wang aliases here.
  4. That FN Ninja

    TraFa - The familiar helper

    The logic the script uses to decide whether to buy the equipment or use the arena is as follows: if(to_boolean(get_property("autoSatisfyWithMall"))) if(mall_price(familiar_equipment(my_familiar())) < winsneeded * (100 + to_int(get_property("valueOfAdventure"))))...
  5. That FN Ninja

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

    I don't know if this helps you at all, but the Hardcore error only occurs (at least for me, so far) when eatdrink chooses something in inventory to consume and then you run out of that item. In this instance there were 7 candy canes in inventory. Eatdrink choose them to consume, but after...
  6. That FN Ninja

    Dwarven Factory - Factory puzzle solver

    I don't see how that's possible. Since its release in v1.1 I have tested the buyore option and it works fine. Were your adventures actually used in the mine?? There is more to the puzzle than just getting the laminated cards. The script might use adventures getting the dwarvish punchcard...
  7. That FN Ninja

    Variables in $effect[]

    @Sputnik: That does work. The way I understood it Ice wanted the string summer_effect to be a user-configurable preference at the beginning of his script. He wanted the script to be able to recognize it as an effect however, hence the use of to_effect().
  8. That FN Ninja

    Variables in $effect[]

    Try this: string summer_effect = "Full-Body Tan"; if(have_effect(to_effect(summer_effect)) > 0)
  9. That FN Ninja

    No Scripts Work

    If there is any output in the cli when you try to run them that information will be useful.
  10. That FN Ninja

    Make.meat.fast

    @Tipmon: type the following into the cli and try it again: set unlockedLocations=
  11. That FN Ninja

    TraFa - The familiar helper

    Update v1.4 Fixed a bug that was preventing 100% runs from being parsed correctly. Added a tour guide run count to faminfo(). Added special handling for Frumious Bandersnatch equipment. Added support for the stocking mimic. This requires r7965 or later. boolean [item] candy boolean...
  12. That FN Ninja

    Foldable items + wang

    If you're going to use retrieve_item you don't need the if statement at the beginning. alias wang => ash retrieve_item(1,$item[wang]); string name; if("%%" == "") name = my_name(); else name = "%%"; string page = visit_url("curse.php?action=use&pwd&whichitem=625&targetplayer="+name);
  13. That FN Ninja

    Foldable items + wang

    Mafia has a fold command: from a script:
  14. That FN Ninja

    Abort: perhaps not the end of the world?

    Good to hear. Thank you kind sir!
  15. That FN Ninja

    Abort: perhaps not the end of the world?

    Is this on the list of things to implement in the next zlib release? It would be nice.
  16. That FN Ninja

    .ash function for activating clover safety

    The code lines posted above by Grotfang are ASH commands and are for use in an .ash script. From the gCLI to do the same thing you would simply use: set cloverProtectActive=true set cloverProtectActive=false However you can use ASH comands from the gCLI by typing ASH before the command: ash...
  17. That FN Ninja

    TwinklyGiveaway - Script Request

    I'm not exactly sure this is what you want. I assume from the title that this is a one time giveaway and not something that will be changing? I'm confused because of your use of the words "supplying" & "service". Anyways, here you go. You can add people to the map at the beginning of the...
  18. That FN Ninja

    Best Between Battle Script Ever -- formerly AutoMCD

    I'll give that a try. Thanks. I have a meat_check.ash that I having been using with my personal ascension suite that is similar to this. Right now it's being called as an unconditional trigger. It's in it's rudimentary stages right now so the amount of meat to keep on hand could definitely be...
  19. That FN Ninja

    Best Between Battle Script Ever -- formerly AutoMCD

    I'm having trouble with BBB's turtle taming functionality. It has to do with the turtle condition BBB sets and the way my script is using the adventure() command. My script is adventuring in the Thugnderdome one adventure at a time like so (very simplified version): while(this)...
Back
Top