NeonGhosts

Well-Known Member
Game Developer
Mar 20, 2019
1,153
13,481
I was looking at some cool Street Fighter art featuring Elena, and wondered what Gabby would look like cosplaying..

Elena Blur.png

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.
 

silversurfer1

Member
Oct 9, 2019
239
601
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.
You don't have permission to view the spoiler content. Log in or register now.
 

Uriel ☁

Well-Known Member
Nov 28, 2017
1,592
9,953
NeonGhosts I'm getting this error talking to Carolina after Mason's scene.
You don't have permission to view the spoiler content. Log in or register now.
The new version only has the variable "bri_fear" while the version linked in the OP here only has the variable "brifear".

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 ( ) 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)
 
  • Like
Reactions: PHIL101-YYouPPHard

NeonGhosts

Well-Known Member
Game Developer
Mar 20, 2019
1,153
13,481
NeonGhosts I'm getting this error talking to Carolina after Mason's scene.
You don't have permission to view the spoiler content. Log in or register now.
The new version only has the variable "bri_fear" while the version linked in the OP here only has the variable "brifear".

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 ( ) 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)
Ack! Much appreciated, I'll review that and get it fixed.

I'm going to be honest, I had.. No idea parentheses worked like that. :'D Learning on the job, here. Thanks for the knowledge!
 

NeonGhosts

Well-Known Member
Game Developer
Mar 20, 2019
1,153
13,481
NeonGhosts I'm getting this error talking to Carolina after Mason's scene.
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.

This is one reason I've been working on a master list of variables with a standard formatting of character abbreviation + status/event, to be implemented with the big Chapter One do-over.

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.

Damn, you guys are getting me real excited, especially about Mason :love:
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.

Aight homes!
Since you like this one.
What are the other two?

. . . .asking for a friend
I know one of them's , which currently has its newest release available at $10. :D I was really inspired by BoB as well as The Regional Manager, so anyone who likes FiN would do well to go check both of those out.
 
Last edited:

Uriel ☁

Well-Known Member
Nov 28, 2017
1,592
9,953
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.
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.
You don't have permission to view the spoiler content. Log in or register now.

So we could see for instance
Nikki: Loves you, Relationship pt. 12, Anal 0 times
Gabby: Sugar daddy, Relationship pt. 8
Viola: Hates you, Relationship pt. 0

It would be useful to those with different saves and would be all around interesting to look at.
Most variables are already tracked, I might take a look and mod it myself.
 
4.60 star(s) 220 Votes