Recent content by Duffkiligan

  1. D

    Hardcore Checklist -- sequential required item getter/notifier

    > call scripts\Checklist.ash Checking for updates (running Hardcore Checklist ver. 1.0.2)... Loading checklist... Checklist loaded (97 steps). Checking for items... Step 10: procure 1 spooky sapling from the spooky forest Conditions list cleared. 1 none does not exist in the adventure database...
  2. D

    level as a condition

    Wow, I can't believe I didn't think about cli_execute, thank you.
  3. D

    level as a condition

    Basically I know I can make an Item a condition via .ash, but how could I make a Level a condition. I'm trying to write a "Day One" script for me seeing as I usually forget what to do, or don't adventure after ascending. It's: (The storage command just pulls from storage if I have it) if(...
  4. D

    Fuzzy matching change

    Well in that case, is there a way to make a list and hardcode things like that in Mafia? Not total fuzzy matching, but mmj seems like it wouldn't rely on fuzzy matching. That is REALLY fuzzy.
  5. D

    Simple bug

    I don't know if this is the place to report it but I found a simple bug. When creating a custom combat script via mafia, it doesn't seem to recognize the words "Item" or "Skill" with a capitals. it must be lowercase. Example: You input: 1: pickpocket 2: skill fire red bottle-rocket 3: Item jar...
  6. D

    Fuzzy matching change

    Okay, Thank you hola.
  7. D

    Fuzzy matching change

    What do you mean by "Filtered lists"? The zones?
  8. D

    Fuzzy matching change

    I semi-agree with Veracity, Off, and it shouldn't guess at all in .ash scripts. Substring matching I like, however, again, not in .ash scripts. When people put in "Pet bu" for pet buffing spray in the script, run it, and don't know why they didn't get what they wanted, sometimes it's a...
  9. D

    Could someone help me clean up this script?

    I had no drunkenness. And it said that I was drinking them, but no drunkenness came out of it.[hr]Okay, I've added if( (my_level() == 1) && (my_turncount() == 0) ) { storage(1, $item[indie comic hipster glasses]); storage(2, $item[bottle-rocket crossbow]); storage(1, $item[flaming pink...
  10. D

    Could someone help me clean up this script?

    I cannot thank you enough efil. /me hopes I can shorten your name to that. If I win the raffle I'll send you meat. xD I'll need help on some other things later. But for now I think I can handle it. =] Edit: Hm, I put all but 1 mon tiki in my store and ran the script. It worked fine until I...
  11. D

    is this possible

    Oh of course. And It's jerks like that guy that make me sorry to see all of their work go to waste on some people. And I mean come on, no person would use that script anyway. xD
  12. D

    Could someone help me clean up this script?

    No idea how I would do either. I'm not that great with scripting. Just basic things.
  13. D

    is this possible

    If you see his post, he wants other to use this, and "Pay Royalties". That's even funnier.
  14. D

    Could someone help me clean up this script?

    Wow, that helps so much! I just have one question. Two questions: Shouldn't if( (my_level() >= 6) || have_skill($skill[Liver of steel]) || (my_inebriety() != 0) ) Be if( (my_level() >= 6) && have_skill($skill[Liver of steel]) && (my_inebriety() <= 1) ) ? And, how could I make it see if I can...
  15. D

    Could someone help me clean up this script?

    Okay, it checks if I have a bartender, buys or pulls my drinks. and buys or pulls my food. Then drinks and eats. However, it's really long and it was the only way I knew how to do it. Any help on general clean up/shortcuts/ anything to make it more manageable would be great. # item list item...
Top