Search results

  1. R

    Feature Request - Peridot display in relay browser

    An in-Mafia solution would have to make decorators for every place.php location, which includes finding the links and images etc., working out the sizes, placing the icons. The reason for having it be in-Mafia over another relay would be that there are already relay scripts this would conflict...
  2. R

    Feature Request - Peridot display in relay browser

    by the screenshot, you have some code that adds the peridot icon: can you post it, please? Also, what's the exact strategy here? You use the mobius ring until you have a possible NC, or time cop or sausage goblin available, and then you peridot / leave every zone until you get the encounter you...
  3. R

    Bug Speakeasy blue word from Typical Tavern not logged to console / session log

    If you search the codebase for "Word found" you can find the cases where we log a word: we just find an appropriate substring from the message and use regex to parse the word out. If you type "debug on" in the CLI before hitting a webpage, Mafia will log all the HTML in a good format for tests...
  4. R

    autoscend - a sl_ascend fork/continuation

    Whenever there's a new day, you get to use all your resources again. Sometimes it will put off certain quests until the next day -- e.g. the Friars quest completed perfectly gives you no stat points, and you get 3 NC forces per day using the Allied Radio Backpack. Which quests is it deciding...
  5. R

    Script Aborts at Holiday Monsters

    if you're using run_combat(), that implies you're using visit_url() instead of adventure() or adv1() to start combats? The latter combined with custom combat scripts, combat filter functions or macros is more usual I think. I have no idea whether Mafia would abort. I don't know why it aborted...
  6. R

    Script Aborts at Holiday Monsters

    Holiday monsters are what KoL considers "special" monsters. Presumably, you are not using a custom combat script; as these monsters disable auto-attack by default Mafia won't finish the fight. You should go into KoL's "Options", then "Combat", then "Enable auto-attack even against boss and...
  7. R

    New Content Mobius Ring - Additional Prefs

    Scripts wearing it should define a choice script where they pick which choice they want.
  8. R

    Bug - Fixed Rollover Effect Duration is no longer a valid modifier

    Okay, this is turning out to be trickier than expected: it gets the score right when calculating items for the shortlist, but when it comes to calculating the final values, it doesn't include the duration. Confusing. Might rearchitect.
  9. R

    Bug - Fixed Rollover Effect Duration is no longer a valid modifier

    Yeah, I need to add multi doubles to maximizer too. Thanks.
  10. R

    Feature - Implemented Minor change to ash maximize detailed function output

    Score should be exposed from the simulated maximizer command: > {string display; string command; float score; effect effect; item item; skill skill;} [0] maximize( string maximizerStringValue, int maxPriceValue, int priceLevelValue, boolean isSpeculateOnlyValue, boolean showEquipment )...
  11. R

    Feature - Rejected Better file corruption support

    Yes, that seems like a reasonable idea. I remember the issue here -- loading corrupt settings and taking a new backup of the corrupt settings -- being the main issue sorting it in Mafia. Although the fact that that can happen in the first place would seem to imply that we try to read the...
  12. R

    Bug - Fixed Mafia sometimes loses track of liver capacity modifiers when changing equipment

    Amazing find! I think the fix is to move "Unarmed" into expressions and out of modifiers. It's more like a restriction than a modifier -- yes, it's like "single equip", but we have a lot of boolean modifiers which aren't really like the others (e.g. "Attacks Can't Miss" is an enchantment that...
  13. R

    Feature - Rejected Better file corruption support

    I think solving this outside Mafia is better because we've had a whole host of issues trying to fix this inside Mafia.
  14. R

    Bug maximizer's "acquire & genie wish" doesn't acquire pocket wish

    Same problem with the handheld radio. Evidently I didn't understand how this worked correctly when I implemented it...
  15. R

    Selling to The HMS Bounty Hunter

    Yes, I don't think we have a way to do this in ASH (for ShopRow coinmasters in general). You can use the Coinmasters Frame, or visit the URL directly. The Coinmasters Frame should sell multiple at the same time as of r28835.
  16. R

    Bug - Fixed Wet blanket is not a bed

    Thanks for the report, r28827.
  17. R

    Mood setup not activating mid-fight.

    > Round 0: givenom casts LUNGING THRUST-SMACK! (auto-attack) > Round 1: givenom executes a macro! You have an autoattack set, and something after that starts a macro. Assuming your macro is to run LTS repeatedly, Mafia doesn't get a look-in.
  18. R

    Feature - Implemented Tracking uses of a wand of pigification

    Thanks for the report, check `_wandOfPigificationUsed` in r28817.
Back
Top