- Feb 4, 2019
- 162
- 289
it is not a harem modthis is the only harem mod so its worth waiting for.
Wrong... I provide split scenes during in-game but have never, ever altered LI paths unless the player chooses to do so themselves via SanchoCheats... and in this case for S3 I've (so far) only allowing you to change the particular Branch during play in real-time to stay in coherence of pure play.this is the only harem mod so its worth waiting for.
As a person who confuses simple things like left and right, enums make things much easier for me.Well, if I'm being honest I use mostly only integer and boolean logic in my persona code. Strings are due to necessity only but usually are the most common factor in bugs due to spelling, etc. My point being that pure logic is black, white, and various shades of gray or grey (see what I did there?). Integers and booleans keep those shades at bay.
from enum import IntEnum
class mood(IntEnum):
HAPPY = 1
SAD = 2
JEALOUS = 3
jillMood = mood.HAPPY
if jillMood == mood.JEALOUS:
print("Jill: I am so jealous of Josey.")
elif jillMood == mood.SAD:
print("Jill: I am sad that Tremolo is banging Bella on her dining room table.")
elif jillMood == mood.HAPPY:
print("Jill: I am so happy that Sage no longer thinks I'm dating Tybalt.")
else:
print("Jill: I don't know what mood I'm in.")
from enum import IntEnum
jillMood = 1
if jillMood == 3:
print("Jill: I am so jealous of Josey.")
elif jillMood == 2:
print("Jill: I am sad that Tremolo is banging Bella on her dining room table.")
elif jillMood == 1:
print("Jill: I am so happy that Sage no longer thinks I'm dating Tybalt.")
else:
print("Jill: I don't know what mood I'm in.")
Well, sir, you just used integers in but a different way than the dev to similar results. That's how code works... there's a "fingerprint" and one of the reasons I became a "black sheep" around here (and why many of my best mods are not listed in VN OPs). (not against you) I call out those "modders" that are bullshit... and that has cost me with those in power 'round these parts. But fuck 'em... I don't work my ass for them... I work for me, then give to you, they can suck my... well, no they can't, no homo.As a person who confuses simple things like left and right, enums make things much easier for me.
Using enums like
would be much easier thanPython:from enum import IntEnum class mood(IntEnum): HAPPY = 1 SAD = 2 JEALOUS = 3 jillMood = mood.HAPPY if jillMood == mood.JEALOUS: print("Jill: I am so jealous of Josey.") elif jillMood == mood.SAD: print("Jill: I am sad that Tremolo is banging Bella on her dining room table.") elif jillMood == mood.HAPPY: print("Jill: I am so happy that Sage no longer thinks I'm dating Tybalt.") else: print("Jill: I don't know what mood I'm in.")
and give the same results.Python:from enum import IntEnum jillMood = 1 if jillMood == 3: print("Jill: I am so jealous of Josey.") elif jillMood == 2: print("Jill: I am sad that Tremolo is banging Bella on her dining room table.") elif jillMood == 1: print("Jill: I am so happy that Sage no longer thinks I'm dating Tybalt.") else: print("Jill: I don't know what mood I'm in.")
View attachment 2251849
Is the 8.3 version good to go or will you have to make changes to that as well?BTW: It is fucking done.
I have to compile and integrity check but I'll damn well have this thing out today (it's 2311 hours here now so it'll be a challenge before 2400).
Prepare yourselves: Something wicked this way comes....
What's wrong with 8.3? That shit's tight bud... it's solid and good to go.Is the 8.3 version good to go or will you have to make changes to that as well?
It's Christmas before time guys.BTW: It is fucking done.
I have to compile and integrity check but I'll damn well have this thing out today (it's 2311 hours here now so it'll be a challenge before 2400).
Prepare yourselves: Something wicked this way comes....
BaDIK is my personal testing ground for new code, so I will certainly continue to "tinker". But don't fret, v0.9.1 of the mod is just freshly released (see updated OP). Go get you some. Regards.Not that you need my permission or anything (obviously) but I personally wouldn't mind if you continue to tinker with this at your own pace. I've got to start allllll over anyway since the multi-path stuff of another mod isn't being continued to be supported. Which is fine, nobody is obligated to do anything. Plus it was my decision to play a game in development and play a game in development with a mod in development lol. But anyway, that and the next-gen of Witcher 3 came out and I'm tinkering with that and mods, so replaying this game yet again - no big hurry. Plus I'm sure there will be a 9.2 or 9.3.