Search results

  1. Veracity

    Feature Namespaces - "packages" - for ASH

    Introduction ASH scripts can import other ASH scripts. As implemented, conceptually, the imported file is textually inserted at the import statement. This can cause name clashes: if multiple scripts define identically named types, variables, or functions, you end up with compile errors. I've...
  2. Veracity

    Bug - Fixed Skill Casting Frame shows no available skills

    I am in Zootomist, but I really do have a few skills available. Especially, many via my august scepter. When I first log in, I see lots of skills on the Skill Casting frame. And then, it seems to forget them all. Here's an image of the frame in that condition: . The only one it shows is the...
  3. Veracity

    Bug Maximizer can't temporarily equip Cincho. Sometimes.

    Maximizing for Meat Drop at the Themthar Hills: cast 1 Cincho Party Soundtrack (+20) I select it and push "execute selected" Cannot choose slot to equip Cincho de Mayo. That skill is unavailable. It "cannot choose slot" if swapping the accessory would decrease buffed MP or HP. Accessory 1...
  4. Veracity

    Bug Wrong Choice Spoilers for The Shore

    If you have exactly 3 turns left and are wielding a candy cane sword cane, this is what The Shore looks like. Notice that it gives the choice spoiler for the option granted by the sword for the "skip this" option.
  5. Veracity

    Bug - Fixed Gaining level in Relay Browser doesn't update compact side pane

    This is new - presumably resulting from the recent change in level parsing to support Zootimist. This is what I see in the center pane. This is what I see in the charpane. This is what I see in the compact side pane. If I hit the refresh status button - which calls api.php - the...
  6. Veracity

    Feature Familiar attributes

    Here is a line from familiars.txt: Emberiza Aureola emberbird.gif combat1 ember egg tiny ember 0 1 2 3 sentient,organic,haseyes,hasbones,hasclaws,haswings,flies,hot,hasbeak,animal Interesting. I have questions. 1) I assume these are KoL "attributes". 1a) Do we know...
  7. Veracity

    Feature shop.php support

    Intro: I've been working on aspects of this project ever since Crimbo Town (Island?) 2024 emerged from the mists last mid-December. I added support for modeling the three shops as coinmasters, rather than mixing methods, took a break to work on CyberRealm, but returned, with a vengeance, to...
  8. 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...
  9. Veracity

    Bug Maximizer suggests breaking Slimesuit for a worse result.

    Here's my current equipment: Here's what the Maximizer wants to do to it to improve Spooky Resistance: It does that for all resistances: remove hardened slime belt - and give up +3 all resistances for the item AND +3 all resistances for the Slimesuit - and replace it with a +4 item to the...
  10. Veracity

    Bug Relay Browser navigation links missing

    I just completed my first (only) I Hate U run. Consumption in the Item Manager (worked great in this path, thank you) and adventuring in the Relay Browser. I noticed three KoLmafia features that no longer worked. 1) When I danced with Lady Spookyraven, KoLmafia is supposed to add some...
  11. Veracity

    New Content - Implemented 11 Things I Hate About U

    I tend to be a late adopter, so to speak, of new challenge paths. If they have "points" that make subsequent runs in the same path easier, I'll max them out in HC during the season. Otherwise, I'll do a single run to see what it's like and get the Thwaitgold reward. This path seems to be of the...
  12. Veracity

    Bug - Fixed backup camera out of Standard, but Item Manager and Maximizer want to pull it

    I'm in a Standard Normal run. I went into the maximizer and set Equipment: "pullable/buyable (12 pulls left)" I maximized for init and got this: Interestingly, the backup camera is out of Standard and you can't actually pull it. Also interestingly, the Item Manager's "Storage" tab shows it...
  13. Veracity

    New Content - Implemented Everfull Dart Holster

    Chris has committed a couple of PRs for initial support, but I think we still need a thread. I've noticed that creatures have from 4 to 6 body parts. They may include "butt", if you've unlocked it, but even if unlocked, some creatures already have six parts and do not include it. These seem to...
  14. Veracity

    Bug - Fixed Toggle Optimality listed as permable

    When did this happen? 7254 Toggle Optimality bigredbutton.gif nc,effect,self 0 0 Permable: true, Max Level: 3 When I look at the gash, it lists "Toggle Optimality" under "Skills you haven't yet permed" It's true. Using a ROM of Optimality gave me the skill and perming it is...
  15. Veracity

    Bug - Fixed Can't download onlyfax config file

    > ash can_faxbot($monster[black crayon penguin]) Configuring faxable monsters. Configuring Easyfax (2504737) Configuring CheeseFax (3038166) And the gCLI is now hung. I annotated DynmaicBotFetcher.run() try { File local = new File(KoLConstants.DATA_LOCATION, this.data.name +...
  16. Veracity

    Bug - Fixed Sidepane no longer shows inebriety limit until refresh

    I assume this is a side effect of moving max inebriety (and fullness) in modifiers? Log in a character with liver of steel. Sidepane shows I have 0/14 available ineriety. Hit the refresh button. Sidepane shows that I have 0/19 available inebriety.
  17. Veracity

    Bug Mall Purchase GUI "search" fails after timein

    This has bothered me for a long time. Now I can easily reproduce it, so... Go to Purchases Enter seal tooth as Item to Find Hit the Search button (You get a list of stores with that item on sale) Force a timein Enter turtle totem as item to find Hit the Search button KoLmafia does another...
  18. Veracity

    Bug Issues with date/time RuntimeLibrary functions.

    int date_to_timestamp(string informat, string date); string time_stamp_to_date(int timestamp, string outformat) string format_date_time(string informat, string datetime, string outformat) call Java functions to parse and generate date/time strings using the formats of your choice. That's handy...
  19. Veracity

    Feature Functions as first-class objects in ASH

    Here's a proposal for adding "function" as a first-class data type in ASH. I've put a fair amount of thought into it and see how I would find it useful - and how I could implement it - but now it's your turn to ponder it and offer suggestions and criticisms. - What is missing that YOU would...
  20. Veracity

    buffer to_buffer(string)

    This has been missing since forever. Instead of: buffer buf; buf.append("Initial content"); It's be nice to have: buffer buf = to_buffer("Initial content"); or even, with auto-coercion: buffer buf = "Initial content"; I have a PR which adds that function - and auto-coercion - to the...
Back
Top