Lol the imported index file is all scrambled, I just wanted to fix the wife scenes because it bothered me so much, but apart from that I think I'm done reverse engineering twine games. I subscribed to your patreon a few months ago and played the new version, it's definitely better than the original in terms of bugs the gameplay loop is also less boring, but I went back to the old game because it obviously has more content (for now). Can't wait to replicate my redhead harem in the sequel.
i have so many broken image icons after the expansion, i'm confused, did i do something wrong?
No, the coding in this game is a total mess. To Dundie as well, many of the wife scenes being broken are either because of $wife being used instead of $wife.name or the issues I mention below.
I enjoy the game, so I've been working to fix it piece by piece as I notice things wrong, but yeah, it's not just images with wrong links, it's all kind of fundamentally broken mechanical code things, it'll assign values to a variable which was inherited from another variable without updating the original variable.
====================================================================
In plain english, an example is when you hire your work assistant, it copies the values from that character, eg Debby Ryan with her friendship values etc. Say a week later, when you're flirting with Debby or giving her gifts, it changes Debby Ryan's friendship. Good. But then it never updates the work assistant's friendship value, which is a condition for several events, since it only copied it over once at the start.
There are TONS of gameplay issues related to this inheritance issue (or whatever it should be called, im not really a coder). Girlfriend's levels not adding properly, other people you talk to not being available when they should be, etc.
If someone with more coding experience wants to chime in I'd love to hear any contributions, I know next to zero html or java so it's foreign to me how
<<print "<<set $" + $girl.var + ".friend +=2>>">>
is different from
<<set $" + $girl.var + ".friend +=2>>
and what rules html or java has for strings..