Search results

  1. ckb

    Feature User-Defined Stylesheet

    Would this need to be a per-user property? If you just add a feature that includes a customMafiaRelay.css, then a user can add whatever they want to that, or not. No property needed, no need for a filename lookup.
  2. ckb

    Feature User-Defined Stylesheet

    The beauty of css is that is is cascading! No need to replace basics.1.css, we just need to write in an addition (like custom.1.css or something). That way a user can add whatever they want and it will supersede any css in basics. (FWIW we did this for ChIT long ago so we could allow users to...
  3. ckb

    How to have a combat script/macro abort if a battle isn't finished fast enough?

    A consult script would be the most detailed and effective way to do it, but you could do something that gets part of the way there with BALLS (KoL) macros. You can check 'missed' or 'monsterhpabove' or 'monsterhpbelow'
  4. ckb

    New Content deed to Oliver's Place

    For Science! void get_milkcap() { buffer page; page = visit_url("place.php?whichplace=speakeasy&action=olivers_sot"); if (contains_text(page,"Fancy Dan taps you on the shoulder")) { page = visit_url("place.php?whichplace=speakeasy&action=olivers_sot"); } if...
  5. ckb

    How to have a combat script/macro abort if a battle isn't finished fast enough?

    Ae you using KoL combat macros? If so, you can add aborts to the start of your macro, something like: "abort hppercentbelow 20; abort pastround 11; "
  6. ckb

    Dwarf Digit Code

    'pref lastdwarf' seems to have a lot of tracked dwarf stuff. Maybe 'lastDwarfDigitRunes' is what you are looking for?
  7. ckb

    .JAR file issue

    You might find this thread useful.
  8. ckb

    Is there a way to auto stop when picking up a brand new item?

    You might start y checking out https://wiki.kolmafia.us/index.php/ASH_For_Beginners You can then write an .ash script that runs after every adventures and set it as your Post-Adventure script (In the Mafia menu, choose General - > Preferences, then 'Automation') The script can be simple like...
  9. ckb

    Enhanced Inventory Spoilers

    Why do you need a git version? Also, you can check out Inventory WTF.
  10. ckb

    Bug - Not A Bug preferences>general>external programs question

    https://kolmafia.us/threads/r25720-you-can-no-longer-set-a-preferred-browser-for-your-relay-browser-this-is-intentional.26595/
  11. ckb

    New Content October IOTM - Autumn-aton

    r26928: fix: NPE on unknown autumnaton location (ASH) by @midgleyc in #1268
  12. ckb

    New Content October IOTM - Autumn-aton

    I had a problem where class java.lang.NullPointerException: Cannot invoke "net.sourceforge.kolmafia.KoLAdventure.getAdventureName()" because "adventure" is null This happened when calling get_autumnaton_locations() I think this is because my list of locations includes a new location [An...
  13. ckb

    Bug - Fixed Encounter Listing Double Counting

    Ahhh - great. Thanks Veracity.
  14. ckb

    Bug - Fixed Encounter Listing Double Counting

    I am tracking down an issues that appeared in a script of mine I have been using for years and I think it may be related to this change. it looks like some 'Encounters' that used to be recorded are no longer recorded. This is what it looks like before this change: [2424] The Tunnel of L.O.V.E...
  15. ckb

    Bug lynyrd snare fight is not in A Mob of Zeppelin Protesters?

    From GenericRequest.java case ItemPool.LYNYRD_SNARE: itemName = "lynyrd snare"; consumed = true; nextAdventure = "A Mob of Zeppelin Protesters"; Preferences.increment("_lynyrdSnareUses"); break; which seems to force the Location of lynyrd fights...
  16. ckb

    Bug - Fixed reloading page advances "_gingerbreadCityTurns"

    Confirmed this today, this occurs when refreshing the choice page for the first choice at Midnight too: [5140] Gingerbread Civic Center Encounter: gingerbread mad dog Preference _gingerbreadCityTurns changed from 13 to 14 [5140] Gingerbread Upscale Retail District Encounter: Upscale Midnight...
  17. ckb

    Bug - Fixed reloading page advances "_gingerbreadCityTurns"

    In Gingerbread City, reloading the page in the relay browser (at least for noncombats) incorrectly advances the "_gingerbreadCityTurns" counter. [4475] Gingerbread Train Station Preference lastEncounter changed from gingerbread mad dog to Noon at the Train Station Encounter: Noon at the Train...
  18. ckb

    New Content October IOTM - Autumn-aton

    Better to just track it correctly in inventory, eh?
  19. ckb

    New Content Fall 2022 Challenge Path - Fall of the Dinosaurs

    Additional spading tells me that ghostasaurus elemental resistance is min(0.90,mon.raw_attack*0.0055); Edit, apparently there is a 'dinodifficulty' that is monster raw attack/180 = 0.00555555...
Back
Top