- May 31, 2018
- 9
- 9
It's been released to $15 Patrons, it will be publicly released in about 2 weeks.Is the update been released?
Ah thanks, I’ll fix that!Found this little typo: "Just another lazy one*" View attachment 2549083
I was looking at some cool Street Fighter art featuring Elena, and wondered what Gabby would look like cosplaying..
View attachment 2548166
Thanks to everyone who's tried the newest release so far! I've cleaned up some bugs and spelling errors over the last few days, and I'm going to republish the update later today with all that stuff in place. Working on making a few more improvements ahead of next week's $5 release.
I'm really glad to hear that, man! About halfway through doing this one I hit a point where I began to question all my decisions, and wonder if this installment hung together at all. :'DYou don't have permission to view the spoiler content. Log in or register now.
I'm really glad to hear that, man! About halfway through doing this one I hit a point where I began to question all my decisions, and wonder if this installment hung together at all. :'D
Ack! Much appreciated, I'll review that and get it fixed.NeonGhosts I'm getting this error talking to Carolina after Mason's scene.
The new version only has the variable "bri_fear" while the version linked in the OP here only has the variable "brifear".You don't have permission to view the spoiler content. Log in or register now.
Watching the code I would also advice to be careful when mixing the AND OR operators in the same line.
AND has precedence on OR (You must be registered to see the links) so that line is processed like this:
(brirel == 0) OR (brirel == 1 AND bri_fear == False)
I don't know if that's intended since I've seen it's possible to have bri_fear == True even with brirel == 0.
It's best practice to use parenthesis to avoid confusion, so one of:
if (brirel == 0 or brirel == 1) and bri_fear == False
if brirel == 0 or (brirel == 1 and bri_fear == False)
Aight homes!Damn, 3 of my favorite, most erotic games are going to be releasing updates in the next ~ month, my boner will not know which direction on the crossroads to take
Hm! This is weird, because in my script that original variable in Ch4 is "bri_fear" -- if I remember correctly, there was a mismatch in Chapter 4 too, someone reported it, and I swapped them all over to the current form. I'll probably set it back to "brifear" for next release. Or I'll just make a little modifier so that if bri_fear == True, brifear = True. Probably the most elegant way to manage it for now.NeonGhosts I'm getting this error talking to Carolina after Mason's scene.
The little gap in between the $15 release and the public release is always tough for me. <_< I just wanna soak up everyone's feedback, and it's like I get a little drip-feed for 1-2 weeks, before the floodgates open.Damn, you guys are getting me real excited, especially about Mason
I know one of them'sAight homes!
Since you like this one.
What are the other two?
. . . .asking for a friend
It would be cool to have a book of sorts of all our "friends" easily available where we can see our relationship type and stats for every girl.So, instead of having nickirel, gabrel, and peprel, it'll be standardized as nirel, gbrel, perel. I'm also instituting a standard list of variables for each girl with things like, anal, vag, bj, hj, or nude to denote what you've done with a girl up to that point, as well as standardized mood variables like love, hate, fear, or friend. So, variables will look more like, 'nivag = True" or 'gbfriend = True' instead of the big mess of abbreviations and modifiers I have now.