Search results

  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...
  16. D

    Refreshing items

    I had the same thing. It didn't know my miniborg destroy-o-bots were there until I disassembled them then reassembled.
  17. D

    question about daily builds

    You don't need to. You just run them, don't open them. My opens with: "Java(TM) Platform SE binary"
  18. D

    question about daily builds

    They're just like the .exe you would use. It's executable, it's just called a .jar because it hasn't been converted (or compiled, I'm not sure). Just double click it and it should run the same as the .exe does. Make sure it's in the same folder the .exe was in though, or else you'll lose all...
  19. D

    Simple (but trying to make it complex) breakfast script

    Okay... I've gotten to the point of rewriting my script. It's perfect except for one thing. How can I make it check to see if it has the items already? I don't want to be wasting meat or pulls on items I already have. # item list item hhm = $item[hot hi mein]; item slhm = $item[sleazy hi...
  20. D

    How does mafia handle void xxxx()

    efilnikufecin said exactly what I wanted to know. Thank you very much. I know it wasn't a clear question but I had no idea what a "void" was... I've seen it in many scripts but never used them.
Top