4.20 star(s) 53 Votes

Faldir

Member
Game Developer
May 7, 2017
358
1,064
Hi, Have i missed something ? Because Rheia is supposed to have Jada Stevens and Aletta Ocean as possible Children too as far as the Wiki and some preview goes but i can't find them. I love the game btw. so much detail, lore and mechanics, it's one of the best adult games i have ever played !
Hmm, try to check the Adam & Gaia\img\People\Human\Girls\Fields folder. If they aren't there they won't appear in game as children of Rheia. Also thanks for the kind words! It was grand to give something back to the perverted community, which I have enjoyed so many other good games from (while covertly teaching some mythology...).

When is your new game going to release? I'm so excited!!!
No good updates on either the female or male protagonist game. I transferred jobs to help the army with their information security earlier this year and... well... it's pretty busy these days. Hardly have time left when coming home (and it's so dark in the North! Leave for work before the sun rise and being home only after it sets... it kills the spirit).

It took 1,5 years to get the first version of A&G up - and I had more time back then. So considering that it'll be made at all, the earliest playable version would be autumn next year. Again, no promises.
 

Vrailis

New Member
Jun 24, 2017
3
1
Thanks for the fantastic game and the 3.2 update.

I am trying to manually replace some of the images/videos in this game with different webms, mp4s and gifs. Unfortunately, the game only seems to accept webms for sex scenes and gifs for the girl's profile pictures. Is there any way to force the game to accept ALL media types? It's a huge hassle having to convert mp4 scenes to webm so that I can get the game to recognize them.
 

Vaars

Member
May 6, 2021
240
53
Is the "have some fun" Option in the Village(s) only broken for me, or everybody?
It seems to be a Dead End in the Code?
 

guest1492

Member
Apr 28, 2018
312
262
Unfortunately, the game only seems to accept webms for sex scenes and gifs for the girl's profile pictures. Is there any way to force the game to accept ALL media types?
Since the game only had webm videos, I removed the compatibility for other types. You have to modify the html to add them back in.

Search for this in the html: <source src="' + _wFullFileName + '.webm" >
Add this right after it: <source src="' + _wFullFileName + '.mp4" >
If you have more extensions, just keep adding while replacing webm as appropriate.

If you also wanted to use images other than gifs, that would require rewriting how the game deals with showing images/videos. It's a lot more work and not something that I can tell you how to do with a just a line or two.

Is the "have some fun" Option in the Village(s) only broken for me, or everybody?
It seems to be a Dead End in the Code?
A space got left out in the code. Search for "VillageFun" in the html (there should only be 1 result) and replace with "Village Fun".
 
Last edited:
  • Like
Reactions: Vrailis and Vaars

chiekat

New Member
May 23, 2017
14
14
I believe this is the older version of the code for showing image and video.
Going through each extension until hits the one that works.
Using it for showImageOrVideo widget should still work.

<<widget "showImageOrVideo">><<nobr>>
<video loop autoplay muted @src="$args[0] + '.webm'" onerror="$(this).remove()" />
<video loop autoplay muted @src="$args[0] + '.mp4'" onerror="$(this).remove()" />
<img @src="$args[0] + '.jpg'" onerror="$(this).remove()">
<img @src="$args[0] + '.gif'" onerror="$(this).remove()">
<img @src="$args[0] + '.png'" onerror="$(this).remove()">
<img @src="$args[0] + '.webp'" onerror="$(this).remove()">
<</nobr>><</widget>>
 

Faldir

Member
Game Developer
May 7, 2017
358
1,064
Thanks for the fantastic game and the 3.2 update.

I am trying to manually replace some of the images/videos in this game with different webms, mp4s and gifs. Unfortunately, the game only seems to accept webms for sex scenes and gifs for the girl's profile pictures. Is there any way to force the game to accept ALL media types? It's a huge hassle having to convert mp4 scenes to webm so that I can get the game to recognize them.
I believe this is the older version of the code for showing image and video.
Going through each extension until hits the one that works.
Using it for showImageOrVideo widget should still work.

<<widget "showImageOrVideo">><<nobr>>
<video loop autoplay muted @src="$args[0] + '.webm'" onerror="$(this).remove()" />
<video loop autoplay muted @src="$args[0] + '.mp4'" onerror="$(this).remove()" />
<img @src="$args[0] + '.jpg'" onerror="$(this).remove()">
<img @src="$args[0] + '.gif'" onerror="$(this).remove()">
<img @src="$args[0] + '.png'" onerror="$(this).remove()">
<img @src="$args[0] + '.webp'" onerror="$(this).remove()">
<</nobr>><</widget>>
That looks right. I remember having the hardest time getting that widget up and working (due to my lack of programming skill). I too found it near essential to be able to put any time of format in - and thus the original code eventually worked with .gif, png. and jpg. mainly. Some more talented fellow added the webp ability and changed the format of content - saving multiple gb of space!

Still... Below is an old player that can be opened in Twine 1.4, which might contain any code now lost. Maybe it'll help.
 

Vaars

Member
May 6, 2021
240
53
Stumble upon this game by accident while looking for a game that is can allow me to stuff a whole bunch of porn material into (other words: moddable). Now I'm trying to work with twine and video clip edition without a slight bit of experience.

Here a small mod I made for for testing purpose.
Only edited one of Rheia's Tent Sex Scene, and added a option to have anal sex.
Both with new 720x480 clips but copied text from previous encounter. (I can't write for @$@%^)

You'll find a modified version of the game html file (based on modded/bugfix version) attached below
and associated Image archive.
Simple extract the files into game folder, shouldn't be asked to replace any files.
Mega - Image Archive
A large portion of the materials are just there for future use, feel free to add them to the game yourself.

Here the part I'm looking for help.
The video editing software I'm using is Davinci Resolve which unfortunately doesn't come with webm support, so I just use mp4 for video file output. As I'm aiming for 720x480 approx 10sec each video file, I'm wondering if there's better way for compression.
Thanks
Does anyone have the Ability and competence to merge/splice this into the 3.2 Version? I fear that this would be above my Paygrade
 

Vaars

Member
May 6, 2021
240
53
Is there any easy way to incorporate the 3.1 cheat mod or do players need to make a choice on if they want 3.1 with cheats or 3.2 without?
jk, looks like 3.2 has cheats built in :)
A few of the Optins like Talk Solutions and Making the Matriarchs give Birth are missing though, arent they?
 

Vrailis

New Member
Jun 24, 2017
3
1
Since the game only had webm videos, I removed the compatibility for other types. You have to modify the html to add them back in.

Search for this in the html: &lt;source src=&quot;&#39; + _wFullFileName + &#39;.webm&quot; &gt;
Add this right after it: &lt;source src=&quot;&#39; + _wFullFileName + &#39;.mp4&quot; &gt;
If you have more extensions, just keep adding while replacing webm as appropriate.

If you also wanted to use images other than gifs, that would require rewriting how the game deals with showing images/videos. It's a lot more work and not something that I can tell you how to do with a just a line or two.


A space got left out in the code. Search for "VillageFun" in the html (there should only be 1 result) and replace with "Village Fun".
Thanks for the response - worked like a charm.

Another question: is it possible to modify the HTML so that more than three sex/blowjob scenes can be used for each daughter? Right now, scenes with daughters alternate between the same three webms before featuring a separate climax. Is there a way to make it so that, if multiple webms are uploaded for a given girl (ex. girl1sex4, girl1sex5, etc.), it incorporates them into the rotation as well?

In the same vein, can scenes be added to the 'Castle', 'BJ' and 'Villages' folders endlessly? Right now, there are 38 webms in the 'Castle' folder. If I add more webms (labeling them '39', '40', '41', etc) will it automatically put them in the rotation?

Thanks again for your help with this. I have zero coding experience and your guidance is a huge help.
 
  • Like
Reactions: azrazr

azrazr

Member
Mar 19, 2021
138
546
Thanks for the response - worked like a charm.

Another question: is it possible to modify the HTML so that more than three sex/blowjob scenes can be used for each daughter? Right now, scenes with daughters alternate between the same three webms before featuring a separate climax. Is there a way to make it so that, if multiple webms are uploaded for a given girl (ex. girl1sex4, girl1sex5, etc.), it incorporates them into the rotation as well?

In the same vein, can scenes be added to the 'Castle', 'BJ' and 'Villages' folders endlessly? Right now, there are 38 webms in the 'Castle' folder. If I add more webms (labeling them '39', '40', '41', etc) will it automatically put them in the rotation?

Thanks again for your help with this. I have zero coding experience and your guidance is a huge help.
about the castle yes, about the blow/sex i dont try (but i think yes ) i have placed more images in the "fetishes" of the girls ( i dont have code experience too, so it was kinda messy and porly done(sometimes the images are not quite refearable but...ok).

this is the versions with the modifications that i made (meant for personal taste) you can look if u find something interesting

******
****** I DONT HAVE ANY RIGHTS ABOUT THE GAME AND DONT WANT TO DISRESPECT THE CREATOR, BUT I LIKED TO PLAY IT SO MUCH THAT I PUT SOME PERSONAL TASTE IN IT
******

 

guest1492

Member
Apr 28, 2018
312
262
A few of the Optins like Talk Solutions and Making the Matriarchs give Birth are missing though, arent they?
Some cheats were added in version 3.2 (under "Misc") when I used them for testing. One of them is "Impregnate All" (or at least everyone you've completed the quests of). The other one allows you to choose whether or not humans/elves are born with max stats or if you have 100% chance of raising their stats. I think the 100% chance should be like "Talk Solutions" but I've never used that cheat mod before so I don't know.

Another question: is it possible to modify the HTML so that more than three sex/blowjob scenes can be used for each daughter?
[...]
In the same vein, can scenes be added to the 'Castle', 'BJ' and 'Villages' folders endlessly? Right now, there are 38 webms in the 'Castle' folder. If I add more webms (labeling them '39', '40', '41', etc) will it automatically put them in the rotation?
It's possible to do practically anything by modifying the HTML since that's all the game code. Right now, the blowjob scenes use blow1 -> blow2 -> blow1 -> blow2 -> blow3. You can change some of the blow1's and blow2's to blow4 and blow5. The blowjobs have a 'length' of five 'scenes.' If you wanted to add more videos, maybe you can have more than one video per scene. Or you'd have to do some writing yourself and add more scenes.

You can find the scenes by searching the HTML for &lt;&lt;set _pic to &quot;img/People/Human/Girls/&quot;+$slaves[$index].home+&quot;/girl&quot;+$slaves[$index].number+&quot;blow1&quot;&gt;&gt;. The sex scenes are similar but they use sex1, sex2, and sex3.

For the second question, you can add videos to the folders but again you would need to edit the HTML. Do a search for img/Background/Castle/ and you should see something like random(1, 38) after each result. That chooses a random number between 1 and 38. You can change that to whatever number of videos you are adding.

As for automatically putting them into rotation, JavaScript (which is what Twine is written with) cannot access local files without permission. You wouldn't want some website to be able to access the files on your computer just by visiting it, right? Anyway, JavaScript can't read what files are in your folders. Maybe it would work if you ran the game using a local server or the game was changed into an app with Electron or something, but that's beyond my expertise.

I could write a python script (most people here probably have python installed due to playing Ren'Py games, right?) that'll list all the files in the folders. Then I could edit the HTML to read that list and use that to figure out what files to load. However that would require rewriting a lot of the game code and it just doesn't seem worth the trouble.
 

H_NGM_N666

Member
Nov 25, 2020
491
485
Puh guys, you got me confused! I like the screenshots but never tried this game. That is what i want to do now.

- So there is the new Update 3.2 (i downloaded that)
- Cheat Mod 3.1 (got that too - needed?)
- Venus girls from the op? More chubby woman or what? I like more the skinny type of woman.
- Desert Fix 1.1 (got that too - needed?)
- Whats that with the webm and mp4? Do i need to change that too?

What the hell i am supposed to do? Any advice for that please?
 

guest1492

Member
Apr 28, 2018
312
262
Puh guys, you got me confused! I like the screenshots but never tried this game. That is what i want to do now.

- So there is the new Update 3.2 (i downloaded that)
- Cheat Mod 3.1 (got that too - needed?)
- Venus girls from the op? More chubby woman or what? I like more the skinny type of woman.
- Desert Fix 1.1 (got that too - needed?)
- Whats that with the webm and mp4? Do i need to change that too?

What the hell i am supposed to do? Any advice for that please?
- Okay.
- No.
- Don't know.
- No idea what that is.
- Not unless you plan on replacing the .webm videos in the game with .mp4 videos.
 

H_NGM_N666

Member
Nov 25, 2020
491
485
When do the villages gets filled with woman? I am at week 18 and explored the first 3 Places (Field, Plains, Mountains), everywhere are the villages build with some houses and some farms. I got also the Monster girls in the world.

Or do i have to choose monster girls or real girls?
 

H_NGM_N666

Member
Nov 25, 2020
491
485
I got daughters (no elven met till now) from some woman, even got a grand-daughter now but they are all in my tent. Do i something wrong? Can i have all the moster girls AND human/elven woman at the same time, or do i have to choose (human/elven or monster girls)
 

azrazr

Member
Mar 19, 2021
138
546
I got daughters (no elven met till now) from some woman, even got a grand-daughter now but they are all in my tent. Do i something wrong? Can i have all the moster girls AND human/elven woman at the same time, or do i have to choose (human/elven or monster girls)

can have both

you can put your daugthers in the villages or for work to produce some things in the game
 
4.20 star(s) 53 Votes