Search results

  1. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    This is why you are a Minion: you track existing bug reports and coagulate them when they are similar issues. Thank you! I am in-run - and also working on a major complicated PR - but I'll look at all of these, soonish.
  2. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    We try to set zone for item generated monsters to none. This is probably a mafia bug, but I will have to look later. Thanks!
  3. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    What the heck? Did you verify that garbo ran only 10 adventures in the zone today? You logging showed something about "relayCounters changed from 1264:Digitize Monster loc=* type=wander:watch.gif to 1271:Digitize Monster loc=* type=wander:watch.gif". Did garbo attempt to digitize monsters for...
  4. Veracity

    Bug retrieve_price bug

    I assume it would use priceToMake, which returns the lowest of crafting vs. mallbuying. Note that this, also depends on valueOfInventory, since it assumes you'll want to use items you already own. Fun fact: that is mutually recursive with priceToAcquire - priceToAcquire calls cheaperToBuy with...
  5. Veracity

    Bug retrieve_price bug

    That is exactly what it is telling you. "The cheapest way you can acquire" an item is to use one you already have; that's how retrieve_item() works. Now, if you want to acquire two, but only have one, retrieve_item() will decide whether to buy or create the second. Since you told retrieve_item...
  6. Veracity

    Bug retrieve_price bug

    This is not the "cost to create". If that is your "expectation", perhaps you should reconsider how you are using it. retrieve_price (aka priceToAcquire) is used by priceToMake is used by cheaperToBuy is used by retrieve_item. That last function (aka "acquire") only considers buying or making if...
  7. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    I finally did my test. Manually adventured for 10 times. It used 10 free turns and left _cuberZone1Turns at 10. Automated via GUI for 19. It used 10 turns and collected the prize and stopped automation with "That area is not available" when attempting the 11th. Which is exactly what I expected...
  8. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    No problem. Glad it's working correctly for you!
  9. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    OK, that all looks good. You SHOULD be able to auto-adventure via the GUI in zone 1 for 10 and it will stop without aborting and _cyberZone1Turns will be 20. I don't use garbo, but I will try manually adventuring in zone 1 until I get the NC and will then adventure via the GUI and see how it...
  10. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    OK. Here is the check for canAdventure() in a cyber zone: if (this.zone.equals("Server Room")) { if (Preferences.getBoolean("crAlways") || Preferences.getBoolean("_crToday")) { String property = switch (this.adventureNumber) { case...
  11. Veracity

    8bit-relay

    I love this script. KoL broke it with their changes earlier this year. Fix: diff --git a/relay/place.8bit.js b/relay/place.8bit.js index 2931ec9..afc72a8 100644 --- a/relay/place.8bit.js +++ b/relay/place.8bit.js @@ -6,7 +6,7 @@ module.exports.main = () => { var pageText = visitUrl()...
  12. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    With Overclocked, the first 10 adventures are free. Until/unless KoL fixes its bug, the (already free) half-way NC will use one of those. After that, the next adventure - the first after the NC - will be the first to use a turn. The next 9 - including the final NC - will also use a turn. My...
  13. Veracity

    Bug - Fixed is_coinmaster_item no longer returning true for Wrecked Generator

    Well, I decided to restore the previous nicknames. Sorry! I added a shopid field to CoinmasterData and use that instead of nickname for registering shops - and I discovered quite a few errors in shops.php. That was well worth fixing, so, thanks for bringing this to my attention. And I fixed...
  14. Veracity

    Bug - Fixed is_coinmaster_item no longer returning true for Wrecked Generator

    Nickname changes are intentional; almost all of them were the shopId used by KoL, and I changed the ones that weren’t to go with that convention. It seems like early on, we made some effort to make nicknames user friendly, but later on got lazy and shrugged. I could restore ones that changed...
  15. Veracity

    My personal Meat farming script

    There are some configuration issues here. What are your goals? - clearing zone 1 gives you a (rapidly decreasing in value) selection from the Zone 1 dedigitizer schematics. You have a 1/11 chance to get the one for the 3d printed server room key, which is currently pricey, but which will...
  16. Veracity

    New Content CyberRealm keycode - 2025 item of the year

    To be clear, I think that is the only thing we are missing for this content. If you have something else, please speak up! Thanks.
  17. Veracity

    Bug Defeat of Island War soldier after war is done talks about war progress.

    I just did my first (likely only) Avant Guard run. Shiny account. Three day HC - including Liver of Steel and the AT Nemesis quest. (I was not expecting to like it, but it was interesting enough to do once. I was not expecting all sorts of activities to progress twice as fast because the...
  18. Veracity

    Feature - Implemented Add a "Pending change in required Java version" nag message.

    I'm pretty sure that Java itself is failing to start, rather than allowing an incompatible version of KoLmafia to start up and do anything at all - such as showing a popup.
  19. Veracity

    Bug - Not A Bug Monster ID and Fax

    Cool, cool. > ash can_faxbot($monster[Astronomer (obsolete)]) Returned: true > ash can_faxbot($monster[Astronomer (obsolete)], "Easyfax") Returned: true > ash can_faxbot($monster[Astronomer (obsolete)], "OnlyFax") Returned: true > ash faxbot($monster[Astronomer (obsolete)], "Easyfax")...
Back
Top