3.40 star(s) 39 Votes

AkiranGaming

Well-Known Member
Jan 4, 2024
1,148
755
199
Nice game, the code could be be improved though, so it's easier to maintain.
For example, instead of this in the generategirl macro
Code:
        <<if _spGirls.african == 0>>
            <<run _availableTypes.push('african')>>
        <</if>>
        <<if _spGirls.asian == 0>>
            <<run _availableTypes.push('asian')>>
        <</if>>
        <<if _spGirls.blonde == 0>>
            <<run _availableTypes.push('blonde')>>
        <</if>>
        <<if _spGirls.brunette == 0>>
            <<run _availableTypes.push('brunette')>>
        <</if>>
        <<if _spGirls.latina == 0>>
            <<run _availableTypes.push('latina')>>
        <</if>>
        <<if _spGirls.redhead == 0>>
            <<run _availableTypes.push('redhead')>>
        <</if>>
This would do the same and wouldn't need to be changed if more types were added later.
Code:
      <<for _type, _val range _spGirls>>
        <<if _val == 0>>
          <<run _availableTypes.push(_type)>>
        <</if>>
      <</for>>
Also you can go past 100 charisma with the cashier events. That doesn't seem intended.
I believe a charisma over 100 is intended to give better chance with the new Unique girls.
 
  • Like
Reactions: @LonelyWolf

Dickard

Member
May 27, 2018
102
108
102
I know there's a spell to make a girl more submissive, but how do you make them LESS submissive? Most of the time I can't assign a girl as a matron bc she's "too submissive."
 
  • Thinking Face
Reactions: @LonelyWolf

InsemGame

Member
Sep 5, 2024
175
470
141
I know there's a spell to make a girl more submissive, but how do you make them LESS submissive? Most of the time I can't assign a girl as a matron bc she's "too submissive."
For now the only way to do that is by building the angel shrine at the estate and assigning a priestess. That will lower the submissiveness of all girls in estate by a little every month. It might be quicker to just hunt for a new girl who has low submissiveness tho. More options will be added in the future.
 
  • Like
Reactions: @LonelyWolf

coretex

Active Member
Jun 15, 2017
660
578
287
Get this whenever I try to even use that.

"Uncaught ReferenceError: SugarCube is not defined
at <anonymous>:1:1"
Pretty sure this is "newer" SugarCube..
should be SugarCube.State.Variables.etcetcetc

Also.. i know there is no "cheats" variable as suggested. Its a bit more complicated than that.
 
Last edited:

InsemGame

Member
Sep 5, 2024
175
470
141
v0.15 released!

This update brings a (pretty dark) continuation of the main storyline, as well as generic events, a new spell and other things that have been asked a lot. For those of you who have been waiting impatiently for threesomes, don't worry, they are still a big priority and they're coming soon, I just want to do them well.

+ Added the option to build a secondary office in the estate
+ Added main storyline events and a new task triggered by visiting this new office
+ Added the Inexorabilis spell that allows you to blow a stronger load that bypasses birth control
+ Added 6 new outfits for Morgathis, for every type, unlocked by the new story events
+ Added a new storyline character (Angel) with introduction scene and 6 different outfits
+ Added a new "random" event where you meet the mother of one of your teen girlfriends
+ Increased the success chance of selling weed without getting caught
+ Improved prison time : it is now scaled to how many illegal items you carry
+ Improved and added an animation on the golden frame for unique girls
+ Bugfixes (special thanks to dieboh for many reports on minor issues)

Links in first post (please be patient for alternative links)
 

MacLeod2001

Newbie
Feb 8, 2018
61
22
105
v0.14.1 hotfix

A few bugs were spotted, so here's a hotfix to take care of them. If you downloaded v0.14, just extract the patch content and replace existing html, then refresh your browser page to make sure changes are applied.

+ Added a golden frame around the portrait of unique girls
+ Fixed : display of new descendant portraits could be broken when loading from old saves
+ Fixed : an error was showing when hunting after meeting all the girls from a given district
+ Fixed : "unique" beauty was showing as "divine" in contact list
+ Fixed : a couple of scenes were not properly displayed (young brunette undies strip)

@miglosch @dehope @starlesssky @Maulazas thanks for the reports guys!

All links were updated on first post, I reuploaded the full game so please be patient for alternative links.
Does anyone have a link to the 0.14.1 hotfix for the full update please?
Unfortunately, I missed the download :cry:
 
Last edited:
Apr 28, 2022
459
1,363
258
Im gonna need that cheat code boss. Game is just too damn grindy without it.

if no one has the code, then at least let me know how to alter the game code to set cheats=true.

pretty please?
 
  • Like
Reactions: @LonelyWolf

Erik1986

Member
Jul 5, 2017
492
804
306
Here's a little cheat mod for 0.14

Slightly better starting stats, all of the hardcoded wait times reduced to 1 second, girls lose less stamina during sex, max action points increased to 20, cheat code changed to 12345

edit: v2 the watch & suit cost more, but now total 50 bonus charisma, the mattress gives you 20ap per month, viagra gives 50 sperm instead of 10, jogging with a girl now costs a flat 10 stamina and increases her maxStamina by a flat 20.

just run this html file from the same folder as the default "inseminator.html"
hope you will update for 0.15, was a good mod for 0.14 to lower the grindyness
 
3.40 star(s) 39 Votes