otmar

Newbie
May 9, 2017
75
14
What did u mean by that?
i think he ment you should search this thread^^ to use the commands you first mus get and understand them from the qsp file. if you know what your're doing you can change most variables directly
 

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
Not using an old save, but starting from scratch. I evem deleted the game directory and redownloaded the files, but I'm still running into the same problem. Here's an example. I've also attached my save.

View attachment 504472 View attachment 504473 View attachment 504474 View attachment 504476
After some investigation, the problem appears to be a result of the year being advanced to 2022. I'm not sure if you changed it using cheats or it got modified somehow. In all the games I create with 1.1 the year is 2016. Advancing the time or date too much can break the game.
 
  • Thinking Face
Reactions: xoxo1001

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
Is there good amount of girls with small breasts? In any case, game looks interesting, thanks for the work.

Also wondering if you allow modding of your game, or are interested in content submissions (not videos, more writing/events, for example I'm into sister-incest, might make a mod for it if you permit that to be published.)

spectre1viper small bug in NPC/npcloc, "gorgeous figure" does not work due to:
Code:
                    if fat[num]>250 or mus[num]<500:
                        if (bedra[i]/10)<=90:$face_k[i]+=', beautiful figure'
                        if (bedra[i]/10)>90:$face_k[i]+=', beautiful figure with big booty'
                    else
                        if (bedra[i]/10)<=90:$face_k[i]+=', gorgeous figure'
                        if (bedra[i]/10)>90:$face_k[i]+=', gorgeous figure with perfect ass'
Replace 'num' with 'i' in fat and mus, and it will work. (fat[num] and mus[num] are always 0 on said screen, hence conditional is broken). Have you considered setting up a gitgud to allow people to contribute code?

An unrelated question, how does princessgen work? I'm trying to make it so that they have smaller breasts since I prefer that, but lowering the tits[num] = rand(x,y) is not working. I also see their stats like muscle, fat, etc are being 'randomized' apart from the static values in princessgen, but I can't figure out where it happens. Will keep looking myself as I explore the way this game is coded.

EDIT: Guessing it has to do with Body/body stat assignment, I see now, trying to understand how exactly all this stat generation works. Starting see how it works now, is there a specific reason you're basing all stats on combinations of rost, rib, build, fem, etc. instead of just using rand() for the specific body parts?

EDIT2: Okay I really don't understand where stats are being randomized, would love to know. Because setting rost[num]=750 in creation_family, and then checking what sister rost is in game with $face_k[i]+=', (rost: <<rost[i]>>)' in npcloc (in cheat mode, where it shows beauty), I get wildly different, and randomized value.
Thank you for the bug fix!

Most body stats are randomized in 'humanbody' and 'harakgen'. Most of the calculated stats are done in 'cloth' which calls all the different body part modules. Most of the other modules such as 'npcloc' and 'carnalview' just display stat results but don't modify the stats. Some stat display is done in 'cloth' also.

You are welcome to PM me with code changes and additions and if I agree with them they will be added or possibly modified to fit.

I do have plans on adding interaction with family members, just not immediately. I don't want to unlock family members without adding events and story that makes them more than just another NPC. I also want to make the family members (at least the sister and possibly the mom) named NPCs, meaning they have a unique image and video set all from the same actress. I won't unlock them until I have that in place which will be a substantial time investment and undertaking.

You are welcome to mod the game (anyone is). However, the main challenge will be keeping up with my release schedule. I've been putting out releases at least twice a month, someones as often as once a week. That means you would have to reinsert your mod code with each new version (to stay current at least). That is a lot of work. If the game were nearly completed or if I had long periods between releases, a mod would make much more sense.

Thank you for your interest in the game!
 

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
I started a new character and i never chose that i studied hard i didn't have good enough grades for college. Is there any possibility to enter college in another way?
College isn't that exciting right now, aside from college parties and interacting with classmates. There are a couple of events with teachers, in the library, and joining the football team but that is about it.

To answer you question - No, not without using cheats / command injector.

If you want to cheat you can try this:

univer[you]=1 & intel[you]=80 & gs'creation_studentclass'
 

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,476
In regards to frequent updates, that's one reason I suggest a git. It's very easy to just rebase every update, and my mod will keep working :p (unless changes are very extensive, but with some diff sorcery it's still easy)

If you're not used to git, I can run it for you. I took over development for Jack-o-nine-tails v2.1 and am running that git, and working on v2.2 for it right now. In general, git is very useful, it provides a VERY detailed code changelog for everyone, and it makes it very easy for people to submit bug fixes.

For example, for JonT I commit every change to files I make per change, and it makes it very easy to see what changed in the diff viewer on the gitgud website. Example: , or a more specific example: " ", as you can see, this makes it very easy to see what exactly a change changed in the code.

Anyway, I'll stop shilling git now, and take another look if I can figure the stat assignment part out. My modification would most likely mainly focus on the things you said in regards to incest content, I very much agree with your points (and that was basically what I was planning on how to have it work), I would probably also lower the minimum age to 14(still post puberty, and other games on site allow characters this young, so should be good rule wise) in my mod as well as implement a 'tutoring' job for nerd PC characters, where you can get into a relationship with your students(love route)/molest them(rape route).

EDIT: Sorry for not searching the thread well enough, just now saw the post below me in regards to a git page. In any case, I'll make my modifications at my pace, and maybe set up an interal git for myself for your game just for my own sake. And if you're stuck on coding/a bug somewhere, you can always PM me or highlight me and I will try to help ^^
 
Last edited:

Lurkling

Newbie
Nov 11, 2017
21
15
The only way I would consider going the github route is if I had competent and dedicated developers helping me with the project long term. Players can send suggestions here or PM me directly with proposed changes. I've actually had three players so far offer to help develop the game and all three didn't follow through. People are a lot of talk until they realize that they have to work for free. I have had several players offer code suggestions which I appreciate.
That does make a lot of sense, but if you are fine with people just suggesting code I'll probably go that route when I see stuff I think could be a nice addition. Thanks for keeping up the good work
 

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
(In the course of the game you can, for example, create your own gang, you can use and sell drugs, you can own a brothel and manage whores, engage in blackmail and, through acquaintances with the elite, turn things around, you can kidnap people and force them to sign slave contracts. Slavery is legal and you can train your own slaves. )

How much of this stuff on page one, post one, is actually currently in the game?
All of it. Most of those options have a moderate amount of content currently.
 

xoxo1001

Member
May 9, 2017
266
270
After some investigation, the problem appears to be a result of the year being advanced to 2022. I'm not sure if you changed it using cheats or it got modified somehow. In all the games I create with 1.1 the year is 2016. Advancing the time or date too much can break the game.
Only cheat I used was crushboss. If it is a time gap then the only thing I can think of is my start profile where I chose to go to the military thus skipping 5 years. Thanks, at least I know what the problem is now.
 

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
I'm getting an error whenever i interact with females with the text
Location: carnalview
Area: On Visit
Line: 80
Code: 119
Desc: Unknown action.

It has to do with the dynamic $d_she_can_love_you but I can't for the life of me figure out what's wrong.
Are you using a new game that was created with version 1.1? If so, please attach a save game.
 

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
In regards to frequent updates, that's one reason I suggest a git. It's very easy to just rebase every update, and my mod will keep working :p (unless changes are very extensive, but with some diff sorcery it's still easy)

If you're not used to git, I can run it for you. I took over development for Jack-o-nine-tails v2.1 and am running that git, and working on v2.2 for it right now. In general, git is very useful, it provides a VERY detailed code changelog for everyone, and it makes it very easy for people to submit bug fixes.

For example, for JonT I commit every change to files I make per change, and it makes it very easy to see what changed in the diff viewer on the gitgud website. Example: , or a more specific example: " ", as you can see, this makes it very easy to see what exactly a change changed in the code.

Anyway, I'll stop shilling git now, and take another look if I can figure the stat assignment part out. My modification would most likely mainly focus on the things you said in regards to incest content, I very much agree with your points (and that was basically what I was planning on how to have it work), I would probably also lower the minimum age to 14(still post puberty, and other games on site allow characters this young, so should be good rule wise) in my mod as well as implement a 'tutoring' job for nerd PC characters, where you can get into a relationship with your students(love route)/molest them(rape route).

EDIT: Sorry for not searching the thread well enough, just now saw the post below me in regards to a git page. In any case, I'll make my modifications at my pace, and maybe set up an interal git for myself for your game just for my own sake. And if you're stuck on coding/a bug somewhere, you can always PM me or highlight me and I will try to help ^^
I will consider your offer to setup a git. I've used github once when I was helping the 'Girl Life' team for three months last year. I did all my changes through github (pushing, pulling, direct editing, etc.).

I want the game to be legal in all countries (at least not blocked due to child pornography). This is why I have the minimum age set to 16. In the vast majority of countries, the age of consent is between the ages of 16 and 18. If there are a handful of countries that have the age of consent lower than 16 I will reconsider.
 

i107760

Sistersitting / Housesitting Developer
Modder
Game Developer
Nov 1, 2016
849
1,476
Non exhaustive list of Age of Consents:
You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

And since all actual porn is verified 18+, we do not run into the trouble of lolicon/shotacon lawgiving either, since almost every country I know of allow erotica featuring underaged characters, even if they treat drawn lolicon/shotacon as child pornography.

I would not suggest doing all changes through the website, but on a .git client on your computer. You can then just do an edit to the evil2.txt file, then commit the change you did right away with a good message. The .git client tracks all changes you did to that file, you don't need to do anything yourself. It doesn't take me any longer than just working for myself, and it keeps a very clean change log and allows me to easily revert to any change I did, if I messed something up. If you need help with how to use git, you can always contact me, since it's very useful ^^
 
Last edited:

EPGerhart

Active Member
Dec 24, 2017
614
199
Some of your acquaintances can be asked to "join the gang". They might accept or refuse. Once one does, you'll have a "secret office" from wich you can manage your gang. Appoint one of your gang members as a second in command, and you'll be able to interact with other gangs in the city, selling stolen cars or getting information on debtors to lean on, for example.
 

Deleted member 216358

Well-Known Member
Modder
Donor
Game Developer
Sep 24, 2017
1,316
3,137
Here is a test build that should fix the computer disappearing from college start.



It should also fix the age calculation problem that was reported if you join the army for 5 years.
 
Last edited:
3.90 star(s) 27 Votes