Recent content by Arpie

  1. A

    Dr. Lessau's shop does not actually offer Scales of Color to backers 0.9.083

    Scales of Color now available for sale in 0.9.084-BACKER#4326 (online version)
  2. A

    Dr. Lessau's shop does not actually offer Scales of Color to backers 0.9.083

    Looking at BACKER-ELECTRON builds for #4273 and #4279 console output of: window.SetLogLevel(8, 4); window.listFeatureFlags(); window.SetLogLevel(8, 1); main.3a33627e.js:1 [Core] Warning: Feature Flag Status: CONTROL_OVERLAY: true MINIMAP_OVERLAY: false SPECIESPREF_SELECTION: true...
  3. A

    Suggested Mac Improvement to main.js for new users

    I'm a big keyboard/terminal user. Today, I leaned the easiest way to turn off AppTranslation that breaks ImagePack download is to move the unzipped application to another folder with the Finder. 1) Could you detect if app translation is on by checking app.getAppPath() to see if it matches...
  4. A

    Crash after character creation

    On Safari 14.1.2 (MacOS 10.14.6) I get crashes when it tries to set or get the game clock immediately after doing the tutorial fight or skipping the tutorial. I did not have this problem with a modern Google Chrome. Manual checking on the Safari Console shows "window.hours" returns zero, but a...
  5. A

    TiTsEd - A save editor

    Pro tip -- python 2.6 or better is available on most modern operating systems so you can use the default JSON pretty printer to help read any JSON file: python -m json.tool < oldfile > newfile
  6. A

    [0.4.16 Steam Version] Kiyoko's Ultimate's name [Not a bug]

    Yes, they had to make a lot of design choices to fit text into the buttons. The bigger bug is that KarmicRetribution does not quite fit into the allotted space.
  7. A

    [0.4.18] Zo training assorted minor bugs and typos

    It appears the actual combat effect is + 15% chance to do a critical hit and critical hits do 10% extra damage with the Equanimity power (without the SilverMask). So the text in ZoTrainEquanimity() which says it is 10% is wrong. While scanning the optimized code, I think the SilverMask changes...
  8. A

    [0.4.18] Zo training assorted minor bugs and typos

    The text is coded to flow from zo.equanimityRange 0 -- She hands you the scabbard with her left hand, and turns the sword into a reverse grip in her right. She’s not going to trust you with the sword on your first lesson. That would be foolish. ... 1 -- She hands you the scabbard with her left...
  9. A

    [0.4.16] Succubus Milk cock shrinking

    The more Object-Oriented way to solve this is by letting the cock do the math. This is slower but that should be insignificant as it is called only in the case of a UI click for up to 2 cocks; and it has the advantage of future-proofing in case a future creature perk or status effect protects...
  10. A

    [0.4.16] Succubus Milk cock shrinking

    4 -> 3 without WellHung 6 -> 4.8 with WellHung 4.8 -> 3.9000000000000004 with WellHung 3 -> 3 without WellHung 3.9000000000000004 -> 3.9000000000000004 with WellHung 3.9 -> 3.9 with WellHung (see below) The problem is that what is calculated as 3 * 1.3 and displayed as 3.9 in the...
  11. A

    bugs [0.4.16]

    FYI the third bug "[0.4.16] Fix brienne.married to not refer to the bri attribute which would be a circular reference which could trigger an infinite recursion" was fixed in a hotfix on Wednesday night, I believe. New downloads don't have that problem.
  12. A

    [0.4.16] Brihaus softlock

    This is the first bug described in bugs [0.4.16]. That's because the state machine in the function "BriHausRinaMenu" does not allow free-form flows and also was only written assuming Brint is Brienne. "Appearance" disables itself upon viewing and returns you to the menu. Presumably if you...
  13. A

    bugs [0.4.16]

    [0.4.16] Fix "BriHausRinaMenu" to work even if Brint is male. That's because the state machine in the function "BriHausRinaMenu" does not allow free-form flows and also was only written assuming Brint is Brienne. "Appearance" disables itself upon viewing and returns you to the menu...