3.30 star(s) 32 Votes

AkiranGaming

Well-Known Member
Jan 4, 2024
1,005
660
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

Newbie
May 27, 2018
98
100
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
161
426
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
649
563
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:
3.30 star(s) 32 Votes