Search results

  1. Razorsoup

    Universal Recovery Script

    That's what I thought too. What should mafia do when it knows something is not multi-usable and you try to use multiple? In this case it seems to try using multiple and quietly fails with no error or message indicating it failed.
  2. Razorsoup

    Universal Recovery Script

    Don't know if this matters for the blue potion issue but blue potions are not multi-usable. And this seems like it may be more a mafia problem than a UR problem. From my gCLI: Using 1 blue potion works fine. Using 5 does nothing.
  3. Razorsoup

    OCD Inventory control

    Is there an option to limit purchases when mall selling specific items? Looking at the code and options it doesn't seem like there is. Would it be possible to add that?
  4. Razorsoup

    Universal Recovery Script

    I've had this happen a couple times now: Restoring MP! Currently at 1412 of 1412 HP, 269 of 540 MP, current meat: 355764 ... Target MP = 486. Searching for "ancient Magi-Wipes"... Search complete. Purchasing ancient Magi-Wipes (4 @ 120)... Stopped purchasing ancient Magi-Wipes @ 245. Using...
  5. Razorsoup

    Profit -- get an accurate meat/adv estimate for a given zone

    Pretty sure you're right, my mistake. I created a wrapper for this script that gives me a table with expected profit for areas I can adventure in and it usually shows that zones in the sea are near or at the top but I wasn't sure if that was accounting for the various penalties. So for now...
  6. Razorsoup

    Profit -- get an accurate meat/adv estimate for a given zone

    Does this take into account the penalties from adventuring in the sea? Also the fact that 1/5 of adventures in the oasis will be the noncombat "Glug, Glug, Glug"?
  7. Razorsoup

    How to tell if summoning chamber is available?

    Thanks. I had in my login script but Mafia would try to summon the demon if I hadn't yet unlocked the summoning chamber this ascension. It wasn't really hurting anything but was getting annoying (and probably causing an unneeded server hit) so I wanted to fix it. Added to the if statement and...
  8. Razorsoup

    How to tell if summoning chamber is available?

    Would it be this? if (get_property("questL11Manor") == "finished") { //do stuff here } Or is there another better way of checking for the summoning chamber's availability?
  9. Razorsoup

    Modifier Maximizer trying to equip stuff I can't equip

    The modifier maximizer is trying to get me to equip a giant gym membership card even though my base muscle is only 40. Am I doing something wrong? Edit: This is with version r12347
  10. Razorsoup

    TheSea.ash - Automated Underwater Quests

    That seems to have sorted it out. Thank you.
  11. Razorsoup

    TheSea.ash - Automated Underwater Quests

    Two issues here with the output I've included below. This script is not automatically unlocking The Wreck of the Edgar Fitzsimmons. And it is claiming that I have already completed the Skate Park quest, which I haven't since I cannot even access the skate park yet. So, what's going on? Do I need...
  12. Razorsoup

    SmartStasis -- a complex script for a simple CCS

    I think that makes sense. Now I'm trying to figure out why it felt the need to use a stasis skill in the middle chamber of the pyramid. I think it may be because I had the cocoabo equipped and it was trying to wait to give the cocoabo time to heal me. Does that sound about right? I can't think...
  13. Razorsoup

    SmartStasis -- a complex script for a simple CCS

    My TT alt keeps getting an error ("This skill is useless out of water.") that I think is related to SmartStasis. From the output, it looks like SmartStasis is trying to use Summon Leviatuga which doesn't make sense given I am not underwater. Any advice on how to troubleshoot or fix this would be...
  14. Razorsoup

    Bug - Fixed Deep six-shooter pulverizes into sea salt crystal

    Edit: This is with r12332 Running this code int [item] pulvy; pulvy = get_related($item[deep six-shooter], "pulverize"); foreach it in pulvy print(it + " : " + pulvy[it]); results in Smashing a deep six-shooter results in a sea salt crystal pulverize.txt needs to have the following added...
  15. Razorsoup

    Bug - Not A Bug Bricks not actually giftable

    I think I understand where you are coming from. But on the other hand, non-gift items return true for is_giftable() because they can be gifted so why do we need to have $item[brick] return true when it can't be gifted? It is my understanding that that function reflects what can be done with the...
  16. Razorsoup

    Bug - Not A Bug Bricks not actually giftable

    Typing this in the gCLI ash print(is_giftable($item[brick])); returns true Returned: void but you cannot actually send a brick as a gift. Should this be returning true?
  17. Razorsoup

    OCD Inventory control

    You should check out the following page for more information about svn and mafia. http://kolmafia.us/showthread.php?12679-What-SVN-means-to-the-user-of-KoLmafia When you type the command "svn checkout https://svn.code.sf.net/p/bale/ocd/code/" into the gCLI for the first time, mafia will install...
  18. Razorsoup

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

    I meant to mention (and apparently forgot to) that at the time I did not have enough meat to purchase the mojo filter. According to the session log, this character started out with approximately 50,000 meat when running ED but only had about 1,600 when it got to the spleen items. Since the mojo...
  19. Razorsoup

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

    Every once in a while ED will get stuck in a loop trying to purchase a mojo filter. I haven't been able to determine a way to make this happen reliably yet. I have to abort the script to get it to stop and running it again usually allows it to run correctly. Here is a sampling of the output...
  20. Razorsoup

    Feature - Implemented Friendly warnings for fuzzy matches in $type[]

    Well, I was trying to see what would happen if I used the character entity for the comma (which I think is ',') instead of the comma itself to see if mafia would correctly interpret it as one item with a comma in it's name instead of two separate items. It did indeed see it as one but still...
Back
Top