Search results

  1. A

    Feature - Implemented Allow "acquire" to buy items with 0 autosell

    It seems to me that there isn't really a reason to disallow buying items with 0 autosell, due to the "autoBuyPriceLimit" setting. I have a script to stock up hagnks, using acquire, to take advantage of mafia's intelligence in acquiring items, but it dies on a few items with 0 autosell, despite...
  2. A

    Feature - Implemented time function

    I'm actually half-assedly working on a date/time library for the hell of it. If someone can actually come up with a use for it, I can probably have it finished in a couple of days.
  3. A

    Ant 1.8.1 and Jarbundler task

    The build currently fails on windows without cygwin using ANY target, not just dist.
  4. A

    Strange mIRC interaction

    I'm using Windows 7 x64, and yes, I was in #hodradio. I don't know how anyone else could have gotten to that particular file.
  5. A

    Strange mIRC interaction

    Just a warning to anyone who uses mafia and mIRC, somehow mIRC ended up overwriting my GLOBAL_prefs.txt with its own preferences. I've got no clue what sort of conditions it could be repeated under, but I'd reccomend being careful.
  6. A

    Converting location to ID number

    Indeed it won't. It would need to be more like: int street_num(location which_house) { for x from 1 to 1000 { if(to_location(x)==which_house) return x; } return -1; } (The formatting change was just so my bad eyes could read it >.>)
  7. A

    Converting location to ID number

    Not all values of $location[] have sensible ids. Only adventure.php locations really have any sort of id to them.
  8. A

    Dudicle's First Mafia Script

    Mafia disallows any access to any KoL url with "chat" in it. Presumably it wouldn't prevent access to an outside url with chat in it, but I haven't honestly tested it.
  9. A

    Auto-download latest SVN version (MAC)

    This is the best I could find on that particular error code:
  10. A

    Kol Mafia IPhone App.

    If mafia were to be ported over to a mobile platform, I'd guess android would be first. At least the code is written in java, even though it doesn't use the usual J2SE or J2EE playforms
  11. A

    Slime Tube Adventuring Script

    Somehow you set the run type to nodule, that means it assumes you want to get spleen items at the cost of a handful of turns, since you will pretty much definitely make it anyways.
  12. A

    Slime Tube Adventuring Script

    What is returned when you type "zlib SlimeTube_run_type" into the CLI?
  13. A

    Slime Tube Adventuring Script

    I don't see any way that is possible. Are you sure that your minml familiar is set to bander?
  14. A

    Slime Tube Adventuring Script

    Set your choice for the mother slime adventure to abort in the main interface. I should probably do that in the script, I'll add it in next time I update.
  15. A

    Slime Tube Adventuring Script

    Uncheck the goals checkbox in the main interface and try again.
  16. A

    Zarqon's Challenging Regex Challenge Betwixt Challengingness!

    This should work: boolean contains_text_sbip( string haystack , string needle ) { boolean[string] preps; preps["about"] = true; preps["above"] = true; preps["across"] = true; preps["after"] = true; preps["against"] = true; preps["along"] = true; preps["among"] = true; preps["around"] =...
  17. A

    Slime Tube Adventuring Script

    Generally, it doesn't make sense to equip the chamoisole for just one adventure, the extra adventure really doesn't matter much, and it could reduce your ML too much if you are close.
  18. A

    Consumption History for PvP

    This script will check your previous 30 days of session logs, and compile a list of what you have eaten and drank, and what you still need to eat or drink to maximize your performance in the Wine Tasting and Balanced Diet PvP minis. Note that if you don't have 30 days of logs, it will create...
  19. A

    Slime Tube Adventuring Script

    I swear that worked when I tested it >.< Updated without changing version
  20. A

    Slime Tube Adventuring Script

    Ooh, I like that. I added that in the latest version. Also, the CLI version only didn't get updated because I forgot about it. That's now fixed as well.
Back
Top