Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

TheJab

5
Posts
A member registered Jul 04, 2020

Recent community posts

I've only changed part of coding in person.gb so the futanari is referred to as a male in some sentences and as a female in others. As you can see below it is entirely possible and probably wont take all that much work. 


Now I am actually interested in the topic:)

inside the person.gd there's couple of lines referring to changing the text of descriptions based on sex.

"string = string.replace('$He', globals.fastif(sex == 'male', 'He', 'She'))"

I'll check it later.

(2 edits)

It is definitely possible. However it might take quite a bit of fidgeting in the code. i've looked around some and the way i see it there two genders in current pronoun coding (in the game there are 3, but bear with me here). There's a male and there's not male, so basically futanari has female pronouns because it is not a male.

Now to achieve what you want you could change it around. So everything that IS female will have female pronouns and everything else will have male.  If you really want to test it out  i can give you pointers what might work according to me and it will be up to you to test it ;] 

Of course I might be totally wrong and there might be a much easier way, or my way will totally botch things up. I've only started to mess with s4p so i don't claim i have full understanding of scripts here.

Someone already found a "fix" for that

https://itch.io/t/854031/bug-cannot-interact-with-newborn-child#post-1585579

(1 edit)

I had a similar problem. Thing is I only had the first part of the error the one in 1131 without the 2014. Now i found a temp solution to my problem, this is a really dirty fix and will probably only work if you are playing as a male. In which case all the broken kids will be yours now. Congratulations (my relatives window is starting to look pretty ridiculous)

in your global.gd file before the line 1131(game folder not appdata)

mother.preg.womb.append({id = father.id, unique = father.unique, semen = cumprod, virility = virility, day = 0,})

paste

if father == null:
father = player

your lines 1131;1132;1133 should look like so

if father == null:
father = player
mother.preg.womb.append({id = father.id, unique = father.unique, semen = cumprod, virility = virility, day = 0,})

I haven't really proof tested it, just went 80+ turns and impregnated 2 slaves. no error so far.  It might cause some pretty nasty stuff later on. ill give it some more testing later.