Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Nukas

4
Posts
2
Following
A member registered Sep 24, 2019

Recent community posts

It might be possible (and make more sense) to make interactions with futa characters move the orientation towards the center rather than either extreme. That way any character interacting with one will always tend towards bisexuality, regardless of where their orientation is currently at.

The main issue with free VPNs, other than (ironically) privacy concerns is that mega has a really stupid data cap that's based on IP address. Finding a node that's not capped can take quite a while, but this time I was lucky enough to get it on the third try with Opera. Appreciate the help anyway.

Do you mind using a mirror site with the next upload? Mega is currently blocked in my location

(3 edits)

Seems like all chat options to encourage a fetish don't work. Clicking them does literally nothing.

Edit: Seems it can be fixed by editing line 1019 of statstab.gd (the one in the main game folder path), in the right side of the comparison it reads something like globals.tabooarray.find(person.fetish[mode]-6) but that -6 should be outside the brackets like (globals.tabooarray.find(person.fetish[mode])-6) or something like that. Not sure if the logic here is what you intended or if it should be the other way around (6 - globals.tabooarray...) but at least this way the dialogue proceeds.

Line 1022 also needs to be changed to globals.tabooarray[globals.tabooarray.find(person.fetish[mode])+1] for it to work.

Edit 2: In lines 1192 and 1194 of \AppData\Roaming\Strive\mods\AricsExpansion\scripts\aricsexpansion\expansion.gd seems like it should be person.restrained = true , and person.restrained = false for 1196.

In the same file there are several instances of person.lactating.storage , however in person.gd in var lactating it is stored rather than storage. Can be fixed by replacing stored in lactating with storage. I think this broke my save game though because I started getting invalid get index errors. From what I understand if you try to use the += operator on a key that doesn't exist it will give you that error, but I think I got that fixed by setting up an if else to first check for its existence with person.lactating.has("storage") and if not then using the = operator instead to create it first. There are several other get index errors though that pop up every day change, so that might have to be done to them as well. Or I will have to test on a fresh save tomorrow.

I never used Godot but I hope this helps in some way.