Create and Fuck your AI Slut -70% OFF
x

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
What are you using to generate the bunny images?
I've been grabbing pictures and animations from rule34.xxx but in the majority been generating pictures with stable diffusion (Forge webui), using models and loras from civitai.com (my )
 

noob0055

New Member
Jan 2, 2025
1
0
26
I've been grabbing pictures and animations from rule34.xxx but in the majority been generating pictures with stable diffusion (Forge webui), using models and loras from civitai.com (my )
Hi!
Do you know if there is a way to add girls? As in not replace the existing but add more variety?
Like if I wanna have 24 or more for bbw instead of the default 12?
 

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
Hi!
Do you know if there is a way to add girls? As in not replace the existing but add more variety?
Like if I wanna have 24 or more for bbw instead of the default 12?
I would also want to know this, so I don't know. You probably need to know some HTML and edit the .html and .tws?
 

guest1492

Member
Apr 28, 2018
385
328
174
I would also want to know this, so I don't know. You probably need to know some HTML and edit the .html and .tws?
Near the end of the Story JavaScript, you will find something that looks like this:
JavaScript:
/* race info */
setup.raceInfo = {
    bee: { pics: 30, hp: 30, dmg: 8, exp: "Low", food: 4, home: "Fields", productType: "preserved food", productCount: 5, pregTime: 6, title: "Queen Bee", moniker: ["Bee Maiden"], },
    [...]
Change the number after pics (30 in this case) to whatever you want. Note that this is only for creatures for whom you can build homes. It doesn't affect random encounters such as bears or sharks; those are hardcoded in their specific encounters.
 

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
Near the end of the Story JavaScript, you will find something that looks like this:
JavaScript:
/* race info */
setup.raceInfo = {
    bee: { pics: 30, hp: 30, dmg: 8, exp: "Low", food: 4, home: "Fields", productType: "preserved food", productCount: 5, pregTime: 6, title: "Queen Bee", moniker: ["Bee Maiden"], },
    [...]
Change the number after pics (30 in this case) to whatever you want. Note that this is only for creatures for whom you can build homes. It doesn't affect random encounters such as bears or sharks; those are hardcoded in their specific encounters.
Awesome, thanks. Do you know how to change the human girls also? I managed to increase it by changing the value here to 24. But then I don't get the boob size picture, it becomes "undefined" and just don't doesn't show at all.
JavaScript:
<<elseif _newSlave.home is "Caves">>
        <<set _boobs to "EDEEEEFFEFFFEFEFEFEFEFEF">>
        <<set _newSlave.number to random(1, 24)>>

Edit:Ah, I think I found it. I just extended the set_boobs with 12 more E:s and F:s. See code above.
Edit2: I also added 12 new names and changed the old ones to famous plus size womens names.

JavaScript:
        <<set _newSlave.slaveName to either("Aretha", "Ethel", "Sophie", "Barbara", "Mama Cass", "Bessie", "Adele", "Queen Latifah", "Tess", "Hattie", "Monique", "Roseanne", "Camryn", "Chrissy", "Melissa", "Gabourey", "Della", "Missy", "Beth", "Velma", "Tracy", "Ida", "Nell", "Minnie", "Clara", "Wilma", "Mae", "Bertha", "Sadie", "Flora", "Matilda", "Eleanor", "Lupe", "Pearl", "Dottie", "Daisy", "Belle", "Ruby", "Dorothy", "Patricia")>>
 
Last edited:

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
I managed to figure out how to add my own music.

Changed the music to dark 80s rpg music, you can still change to the original soundtrack.
Just add the mp3 into the and .
I'll probably need to update the whole game soon, I've made a lot of changes that I haven't uploaded yet.
 

EchoEcho679

Newbie
Nov 4, 2023
19
73
129
This game is a miracle in the industry and I'm glad that heroes like AIrobotbipbop continue to improve upon it. Besides Incubus City or the Eroman series, are there any other Live-Porn games like this that are genuinely good in both Gameplay & Content? I feel as though most are just simple or poorly made HTML's that have no gameplay other then constant grind. Or gems hidden from the world like this one which I discover 2 YEARS after its final update.

Also AIrobotbipbop, could you create a compiled folder of all your updates or links to them, for sake of ease?
 

Anewrai

Member
Dec 6, 2019
215
96
104
This game is a miracle in the industry and I'm glad that heroes like AIrobotbipbop continue to improve upon it. Besides Incubus City or the Eroman series, are there any other Live-Porn games like this that are genuinely good in both Gameplay & Content? I feel as though most are just simple or poorly made HTML's that have no gameplay other then constant grind. Or gems hidden from the world like this one which I discover 2 YEARS after its final update.

Also AIrobotbipbop, could you create a compiled folder of all your updates or links to them, for sake of ease?
A Succubus Is Born
is a good one dev is constantly working on it and updates frequently. of late they've been working on gameplay and UI.
 

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
This game is a miracle in the industry and I'm glad that heroes like AIrobotbipbop continue to improve upon it. Besides Incubus City or the Eroman series, are there any other Live-Porn games like this that are genuinely good in both Gameplay & Content? I feel as though most are just simple or poorly made HTML's that have no gameplay other then constant grind. Or gems hidden from the world like this one which I discover 2 YEARS after its final update.

Also AIrobotbipbop, could you create a compiled folder of all your updates or links to them, for sake of ease?
Thank you for the kind words.

I'll put it in a rar-file and upload the whole game, uploading it right now to Gofile. In total it's 8gb atm (mostly because I didn't start optimize the file sizes until now and it got some junk files that I'm gonna clean up later).

Here you can download some of the finished packs here https://f95zone.to/threads/adam-and-gaia-new-girls-mod.213073/#post-15931115
But i'll admit, it's getting kinda confusing so just download the whole game from Gofile.

 
Last edited:

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
I'm getting frustrated here, I'm trying to add another creature called "monster" and been adding code for it everywhere where other creatures are coded.

But somehow it can't recognize it.
Code:
<<if $raceData.monster.wild gt 0>><<set _events.push("combat.monster")>><</if>>
Anyone knows how to make the game able to find a wild "monster" and combat it? Here is the if you're able to find where I've done something wrong.
 

guest1492

Member
Apr 28, 2018
385
328
174
What is the population limit number?
The game will break if you have more than 5000 children. It's doubtful that you will ever reach that many. You only need to have 161 children to reach the end.

Anyone knows how to make the game able to find a wild "monster" and combat it? Here is the html file if you're able to find where I've done something wrong.
On line 1828 you have wild: 0. You should change that to some number higher than 0. However, there is a lot more that you need to change before you can get everything working properly. Unfortunately, I wrote this code ~4 years ago and have only done minor fixes to it since (last time was over a year ago) so I can't pinpoint everything offhand.
 

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
On line 1828 you have wild: 0. You should change that to some number higher than 0. However, there is a lot more that you need to change before you can get everything working properly. Unfortunately, I wrote this code ~4 years ago and have only done minor fixes to it since (last time was over a year ago) so I can't pinpoint everything offhand.
[/QUOTE]

Thank you! That's the missing piece I've been missing. Now it's working.
 

AIrobotbipbop

Newbie
Apr 7, 2018
99
145
120
AIrobotbipbop my man, does your full game+mod( ) include the cheat mod also?
Yes, it got cheats.
Gonna update this post with the latest version. It's totally broken (sorry about that) but added a lot of creatures and women.

There you go.
I'm trying out some stuff so it's a bit buggy and unfinished here and there atm.
 
Last edited:

Neroweiss

New Member
Jan 11, 2021
14
7
103
Yes, it got cheats.
Gonna update this post with the latest version. It's totally broken (sorry about that) but added a lot of creatures and women.

There you go.
I'm trying out some stuff so it's a bit buggy and unfinished here and there atm.
You absolute legend.

Sorry, there were 3 files in your latest post. Which one is the game?
 
Last edited:
4.20 star(s) 56 Votes