kiava

Active Member
Oct 2, 2017
989
560
296
A lot of my prompts are custom built depending on the model I am using. I recommend checking out these articles and to build your own in the prompts folder. This allows prompts that work best with the model you are choosing. I've learned some prompts don't even register in certain models or have to be worded differently to get a similar response.
k ty
 

darkhorse345

Newbie
Feb 21, 2022
36
17
27
Can someone tell me how I can know when a girl's fertile day is, or how to get her pregnant? I've been trying for a while but I can't seem to do it.
on the top left of character card, there is info button, from there you can check whether she is fertile or not. moreover you can create serum for immediate ovulation too. so no tracking, knock'm up any day you want
 

leminal

Newbie
Jun 27, 2020
57
28
77
Anyone know how I can get an older build running? I downloaded the 2024.5b branch from the repo, but the executable is missing. I guess it needs to be compiled, but I didn't see any compilation steps in the repo description.

Any ideas?
 

OverlordCW

Member
May 22, 2023
142
214
176
Anyone know how I can get an older build running? I downloaded the 2024.5b branch from the repo, but the executable is missing. I guess it needs to be compiled, but I didn't see any compilation steps in the repo description.

Any ideas?
I think you need to download the correct version of the Renpy sdk (probably ) and run the game through that.
 
Last edited:

lan1967

Member
Dec 15, 2017
251
68
213
When ever she shows up at your work, give her coffee with the drug in it. Then make out with her, do this multiple times and as you do, one of the things you can suggest when she is in a trance is for her to want to wear sluttier outfits. This will have to be done multiple times, and the attention that you have is related to her showing up.
Thanks, then how to allow public sex policy? It's written I should find other city officials. Female cop does not give an option for that policy.
 
Last edited:

anon_goblin

New Member
Mar 30, 2024
1
0
11
Exception: Could not load from archive bugfix_additions/action_mod_core.rpyc.

macOS-13.3.1-arm64-arm-64bit arm64
Ren'Py 8.1.3.23091805
 

kiava

Active Member
Oct 2, 2017
989
560
296
A lot of my prompts are custom built depending on the model I am using. I recommend checking out these articles and to build your own in the prompts folder. This allows prompts that work best with the model you are choosing. I've learned some prompts don't even register in certain models or have to be worded differently to get a similar response.

I also have so many models I had to start a spreadsheet for all the different settings. lol
View attachment 5107256
hi man i'm trying to begin to initiliaze things but i don't undertstand one thing.
To start i need a model, and like you shared, i downloaded the milky dreams one.
Then if i got it right to generate images you, need prompts.
The most used one i saw are pony and illustious.
Then there's the thing, if i understood well, you need to use the right tags based on the checkpoint you are using right ?
So since milky dreams is under illustrious i should use its tags right ?
Second thing, if i got more models, when i generate images it generates it based on the model i'm using in that moment right ?
bc i see in a image on a guide many checkpoints under illustrious, so do i need to download this illustrious separately or it's just a refence for us to know which prompt we shoudl use when generating images like for example the milky dreams - illustrious ( full name) chepoint ?
hope i was clear and sorry if these are stupid question, but i'm starting from zero as i told you
Oh sorrylast thing, and what about lora ? there's one lora or i should find one that goes well with Milky dreams ?
 

NaughtyAnon

Newbie
Apr 2, 2020
44
36
152
hi man i'm trying to begin to initiliaze things but i don't undertstand one thing.
To start i need a model, and like you shared, i downloaded the milky dreams one.
Then if i got it right to generate images you, need prompts.
The most used one i saw are pony and illustious.
Then there's the thing, if i understood well, you need to use the right tags based on the checkpoint you are using right ?
So since milky dreams is under illustrious i should use its tags right ?
Second thing, if i got more models, when i generate images it generates it based on the model i'm using in that moment right ?
bc i see in a image on a guide many checkpoints under illustrious, so do i need to download this illustrious separately or it's just a refence for us to know which prompt we shoudl use when generating images like for example the milky dreams - illustrious ( full name) chepoint ?
hope i was clear and sorry if these are stupid question, but i'm starting from zero as i told you
Oh sorrylast thing, and what about lora ? there's one lora or i should find one that goes well with Milky dreams ?
Generative AI a lot of checkpoints are like mixtapes, its a blend of a base model (pony/SDXL/Illustrious/Etc.) with things the person liked (other checkpoints/LoRA/Etc.). If you find one that fits your style you only need that one. Authors of checkpoints will often list tags or prompts they added in on top of what the base model knows. So the quick answer to your questions: Illustrious tags would work best for MilkyDreams. GenAI can only use one checkpoint at a time for the mod (right now). LoRA are good if you find some things not generating correctly or you want to add extra styles to what is made. Hope this helps!
 
  • Like
Reactions: kiava

kiava

Active Member
Oct 2, 2017
989
560
296
Generative AI a lot of checkpoints are like mixtapes, its a blend of a base model (pony/SDXL/Illustrious/Etc.) with things the person liked (other checkpoints/LoRA/Etc.). If you find one that fits your style you only need that one. Authors of checkpoints will often list tags or prompts they added in on top of what the base model knows. So the quick answer to your questions: Illustrious tags would work best for MilkyDreams. GenAI can only use one checkpoint at a time for the mod (right now). LoRA are good if you find some things not generating correctly or you want to add extra styles to what is made. Hope this helps!
it sure does ! thanks a lot for your time and patience Anon
Any lora you could suggest in particularly ?
 

lan1967

Member
Dec 15, 2017
251
68
213
Took a quick look in the code for it. They are setup as roles.
So while in conversation with them, use:

$ the.person.remove_role(anal_fetish_role)

or breeding_fetish_role, cum_fetish_role, or exhibiition_fetish_role for the others.
For some reason I cannot set attribute on any fetish. It says: AttributeError: can't set attribute after
the_person.has_XXX_fetish=True
 

Phoexist

Active Member
Mar 11, 2020
505
559
258
For some reason I cannot set attribute on any fetish. It says: AttributeError: can't set attribute after
the_person.has_XXX_fetish=True
.has_xxx_fetish is just a boolean function call. You can't alter the fetishes with that. The code just calls that function to see if they have one or not. You have to remove or add the roles as in the part you quoted.

$ the_person.remove_role(xxx_fetish_role)
 
  • Like
Reactions: lan1967

lan1967

Member
Dec 15, 2017
251
68
213
.has_xxx_fetish is just a boolean function call. You can't alter the fetishes with that. The code just calls that function to see if they have one or not. You have to remove or add the roles as in the part you quoted.

$ the_person.remove_role(xxx_fetish_role)
Thanks
Do you know how to finish quest with a command? Or add to harem?
 

NaughtyAnon

Newbie
Apr 2, 2020
44
36
152
it sure does ! thanks a lot for your time and patience Anon
Any lora you could suggest in particularly ?
I had to double check as I have been distracted by Wan2.2 and ComfyUI but I hard coded for it to use 3 separate LoRAs and some common prompts to improve the generation since i use mostly Pony and SDXL.

Heres the section from the PromptBuilder python file:
full_prompt += "score_9, score_8_up, score_7_up, <lora:Realism_Lora_By_Stable_yogi_SDXL8.1:0.5>, <lora:Amateur Style Pony V1 By Stable Yogi 16.1:0.5>, Stable_Yogis_PDXL_Positives2,
 
  • Like
Reactions: kiava

kiava

Active Member
Oct 2, 2017
989
560
296
I had to double check as I have been distracted by Wan2.2 and ComfyUI but I hard coded for it to use 3 separate LoRAs and some common prompts to improve the generation since i use mostly Pony and SDXL.

Heres the section from the PromptBuilder python file:
full_prompt += "score_9, score_8_up, score_7_up, <lora:Realism_Lora_By_Stable_yogi_SDXL8.1:0.5>, <lora:Amateur Style Pony V1 By Stable Yogi 16.1:0.5>, Stable_Yogis_PDXL_Positives2,
ty again ! do i have to copy and past this string in prompts in gen ai confing in game ? before the other tags, right ?
 

Venters616

Newbie
Jan 3, 2022
27
4
126
I'm having an issue with progressing Ashley's story. it just says wait a few days and so i keep waiting but nothing happens. any idea what i'm missing to get her story to trigger? its relatively in the begining cause all we can do is just grope each other.
 

NaughtyAnon

Newbie
Apr 2, 2020
44
36
152
ty again ! do i have to copy and past this string in prompts in gen ai confing in game ? before the other tags, right ?
While I hardcoded it you can use everything from the score_9 to the end in the prompts. Just make sure you have the 3 LoRA installed and running. I usually test in the webUI to make sure they are helping the generation.
 
  • Like
Reactions: kiava
Feb 23, 2018
363
358
267
wish there were Milestones/more guardrails to corrupting family, would be better imo if you had to do specific things in order to get further, instead of just drugging them like crazy. maybe even percentage based chance of things happening. The hardest part is trancing them off their dislikes. Also remove the freebees at the start, the red serum stuff.
 
4.60 star(s) 79 Votes