Search results

  1. C

    Edscension - Your #1 Karma Farming Script

    I can't help you with this issue but I can suggest that you may want to try http://alliancefromhell.com/viewtopic.php?f=21&t=6363 instead since it is still maintained.
  2. C

    New Content - Implemented LI-11 Motor Pool voucher

    From r18136: FightRequest.java is tracking the banisher as "curse of vacation" instead of "Spring-Loaded Front Bumper".
  3. C

    New Content - Implemented LI-11 Motor Pool voucher

    Can we get a int fuel_cost(skill) function? I don't know if any of the skills are limited per day at all (I assume the banisher will be and that free kill, damn). Can we get usage counts for those too?
  4. C

    Bug - Fixed combat macro automation

    What about lynyrd snares with Eldritch Attunement active? (I have an issue with my CCS not firing as well but I've rolled back all the combat changes to r18096 to get past that).
  5. C

    Winterbay's Helpful Automatic Monsterbasher (WHAM)

    Does it work if you use a mafia build before or at r18096?
  6. C

    Bug - Not A Bug Visiting sea monkees unequips edpiece configured with fish

    Do you have ButtonFrenzy installed? Specifically, "relay/buttonFrenzy.ash"?
  7. C

    Feature - Implemented License to Adventure

    Reported a related issue: http://kolmafia.us/showthread.php?21625-Clan-furniture-functions-not-updating-when-ascending-from-standard-to-non-standard
  8. C

    New Content - Implemented Kremlin's Greatest Briefcase

    This is correct. It will not accept the POST version.
  9. C

    Feature - Implemented License to Adventure

    It appears that if you have not unlocked all the Bond skills, r18070 assumes you have those skills. Upon my first visit on day 1: Setting: lastEncounter: License to Adventure Encounter: License to Adventure Setting: lastEncounter: Daily Briefing Encounter: Daily Briefing Setting: bondStealth2...
  10. C

    Feature - Implemented hedge_maze() abort on failure

    Doesn't it return false if it fails?
  11. C

    Yet another ascension zcript

    We always need more scripts. More code for everyone. Yay, code!
  12. C

    Bug - Fixed Clan furniture functions not updating when ascending from standard to non-standard.

    If I complete a Standard run (specifically, I was in Gelatinous Noob) and then ascend into a non-standard run (specifically Community Service), get_clan_lounge() reports only the things I had in my clan while in standard. "refresh all" appears to trigger ClanManager::changeClan() as it reports...
  13. C

    Changes: Monitor property changes.

    I modified my local copy of mafia to report on all writes (not reads) because this information is very useful for scripting.
  14. C

    Bug - Not A Bug Password Hash Mismatch

    This bookmarklet works quite well for me (to not have to reload chat). javascript:(function(){var%20x=new%20XMLHttpRequest();x.open('GET','hash.php',true);x.onreadystatechange=function(){if(x.readyState==4){top.chatpane.pwdhash=x.responseText;}};x.send(null);})(); I am not the author of this...
  15. C

    Properties

    This sounds pretty well thought out, I'm guilty of orphaning a number of properties myself so being able to clean them up would be nice. I've also had to do silly things to try to determine if a setting is built-in or not, that I'd rather not do. I'm on the side of having a property data type...
  16. C

    Bug - Waiting for Info War Progress misalignment

    I hit this issue all the time with casualscript. But I was rushing so I worked-around it and forgot about it (if failed, add 1 to hippiesDefeated).
  17. C

    Feature - Implemented Spring 2017 Challenge: Gelatinous Noob!

    Mafia doesn't seem to recognize that when I cast Gelatinous Reconstruction that I lose the Beaten Up effect in r17870 (forgot to update before running today). EDIT: r17876 resolves it. Nevermind me.
  18. C

    ASH Scripting with intellisense

    The "prefref" command (with no arguments) in the CLI will dump everything. It may take several seconds before it starts output though.
  19. C

    ASH Scripting with intellisense

    Use keyword highlighting for ASH built-in functions and keep the wiki open? Sure, the wiki is a tad out of date in some places but it gets the job done.
  20. C

    Feature - Implemented Value of to_string() is prefixed with item number for ambiguously-named items

    If you are doing comparisons, it was never safe to compare items to strings. Unlike comparing apples to oranges, which always works. if you just wanted to print out the item, you have to disambiguate it anyway but it'll coerce directly into a string if it is required to do so.
Back
Top