Trybutyoucant

Newbie
Jul 12, 2021
20
17
Suggestions?
Well, for starters, I will say that the reactions are sometimes inconsistent to their Affection/Fear levels so there could be more work put into that.
You could do a lot more with the boobs, you could tongue the girls, same with the ass, and I don't even know at this point why the thighs option exist as a separate entity...
And, of course, some extra dialogue on any interaction would make it better as well.
 
Sep 17, 2023
129
69
Well, for starters, I will say that the reactions are sometimes inconsistent to their Affection/Fear levels so there could be more work put into that.
You could do a lot more with the boobs, you could tongue the girls, same with the ass, and I don't even know at this point why the thighs option exist as a separate entity...
And, of course, some extra dialogue on any interaction would make it better as well.
Reactions have to be programmed in, every branch creates a pair of options. Is corruption is over a certain amount, or below. Each trait/attribute compared requires additional lines of code. This is just a hobby for me. If you are paying the bills, I'm doing whatever you think is necessary. Since this is a hobby, I'll put in only as much time as I feel is appropriate. I've worked really hard on what I build, sometimes it's not quite what I wanted it to be, but it works, and all of it has taught me about the renpy language I'm learning about.
Making more actions means making more .webm's, and making them means watching a lot of porn. A lot. For the analingus, I think I watched about five hours of porn, just scanning through trying to find useful stuff. I included four vids, all the best I had finished before getting tired of watching porn. You can only watch so much of it before you just want to do something else. And a lot of it is stuff I'm not terribly interested in. Some people are into legs, like, really into legs. The vids showing guys blowing loads on them is proof of that. Might not be your thing, that's fine. Don't use it.
As to adding more dialogue, again, I'm not a professional writer. I have precisely zero fictional works in my portfolio. I'm an editor, mostly technical/user manuals that most people will never read (admit it, you've never read your phone's user manual). You can, however, freely edit anything in your game. That includes files I've made, it's not like there's some kind of copyright-protection program guarding them from modification. If you want the girls to say something else, do it. They'll say anything you want. I just don't have any idea what you, or anybody else, would want them to say. Modifying existing files is how I learned to create renpy files. If you need a hand learning how to identify text in the scripts, or how to add additional checks, I'm always willing to try to help.
And, I'm also perfectly willing to make new actions, I just don't really know what else could be needed, or desired. I added some that I wanted (titty-fucking and cumming on boobs/pussy/ass), and the analingus for a buddy with restrictive-access to the web, I added the legs-option since I thought that area just needed another option. Maybe I'm just an old stink-in-the-mud, but I don't know what other interactions could be used.
I find it's a bit overloading now at times, and tend to use only a portion of the available actions as it is. If there is a specific action you want to see, name it. It just has to be something that can fit into the existing structure, so face, chest, ass, pussy or legs. I'm mission-oriented, so the more clarity I have on something, the better. The 'heart-to-heart' project is slow-going, as it's difficult to imagine how conversations like this would go, and the attribute changes need to be kept balanced. I also don't want it to be overused, so I'm looking at ways to restrict it, either by time, or figuring out how to make it a once-a-day option like some of the other interactions with mom. I'm working on the latter, since it teaches me something new.
 
  • Like
Reactions: Kodex

Frostfire281

Member
Jan 18, 2019
126
212
Decided to upload my custom girls. Some are as complete as I will make them, some require me to redo their videos now that I can edit in 9:16 (took me wayyyyy too long to find that option in my editing software lol), and some require me to add videos to them in the first place, but I'll update the girls as I finish them. My focus is on bodypart/face/portrait variety, and videos for as many in-game actions as possible. Some may have photoshoots from when I was first making custom girls, but I quickly gave up on doing photoshoots and don't plan to add any to any of the girls in the future.
  1. Completed girls: Alice Moon, Belle Delphine, Lena Paul, Luna C Kitsuen, Senrisama
  2. Girls I want to redo the videos for, but otherwise complete: AellaGirl, Ashe Maree
  3. Girls who have some videos but need more: Miss Alice
  4. Girls missing videos: Ava Dalush, BigTittyGothEgg, Cassidy Klein, Honeymomo, Julia Boin, Karli Mergenthaler, Kittyxkum, Melody Marks
Download link here:
 

fast17

Newbie
Nov 15, 2019
21
2
...and how can I prioritize vids from girls folder compared to common vids?
Thank anybody in advance for help :)
 
Sep 17, 2023
129
69
...and how can I prioritize vids from girls folder compared to common vids?
Thank anybody in advance for help :)
I think the game does prioritize the girl's vids over general ones. The webmFinder will look for tags, so if the girl's own vids don't have that tag, it goes to the general vids folder, and finds one there. It does search the girls/ and vids/ folders, and finds everything with the tags it needs. There is a degree of randomness that is needed when there is a whole bunch of videos to choose from, and it only needs one.
Note: From my own quick testing, it does seem to prefer using the girl's own videos when one is available. You can add additional tags to videos if you want to use the same video for multiple purposes, such as "fuckpussy_fuckass_1.webm". A list of tags is in the main vids folder, two text files (_mainTags and _optionalTags). Make sure you separate all tags with an underscore " _ ".
Edit: sorry I don't know anything about the console commands, I don't actually know what they are. When I want to just dick around, I use the debug and max them all out.
 

Smegmut

Newbie
Oct 30, 2020
49
21
Yes, do that, _bare and _clothed are there just for backwards compatibility. You could check the code:
Code:
        def determineSubTagsFromGirl(self,_girl):
            _subTags = []
            if not isinstance(_girl,Mother):
                if _girl.panties.name == "None" and _girl.lower.name == "None" and _girl.isTopless():
                    _subTags.append("bare") # for retro-compatibility
                else: _subTags.append("clothed")

                if _girl.isTopless(): _subTags.append("notop") #tl
                else : _subTags.append("top")
                if _girl.panties.name == "None" and _girl.lower.name == "None": _subTags.append("nobot") #bl
                else: _subTags.append("bot")
...

        def isTopless(self, _forceTopless = None):
            if _forceTopless is not None:
                    self.isToplessSay = _forceTopless
            if self.isToplessSay: return True
            if isinstance(self, Mother): return False # will need to be adressed later
            if self.isToplessSay or (self.upper.name == "None" and self.bra.name == "None" and self.outer.name == "None") or (hasattr(store,"nudityState") and nudityState >= 3):
                return True
            else:
                return False
So basically, _bare equals both _notop and _nobot, otherwise it is _clothed. _notop means no hoodie, no shirt or whatnot, no bra, _nobot means no pants and no panties.
Which file did you find that in Ellen? I'm not a programmer, and I used Brackets to open the .exe file, but quickly discovered that the tags aren't in there. I want to check if there's a 'shaved' tag, as there's several vids where it's ambiguous whether they're shaved or hairy. I have been putting 'nohairy', thinking that it might realise the prefix 'no' to mean 'in the absence of...', but I just had a thought this morning that that likely isn't the case.
 

Smegmut

Newbie
Oct 30, 2020
49
21
_bare is in the game for retro-compatibility, don't use it.
Use a combination of _top/_notop, _bot/_nobot, _bra/_nobra, _panty/_nopanty describing your video, that will tremendously help the webmFinder find the right vid for the context.
For completly clothed or naked girls you can use _clothed/_naked (implemented in next update)
There's several vids where it's ambiguous whether she's shaved or not. In which case, would _hairy_nohairy work? I figure if I leave it blank the default will be no pubes, but I want to include the possibility of students who've let nature take its course have those clips appear - I'm rather partial to a lush pudendum, you see.

EDIT:

I think I've sorted it out now. EllenD's reply below has helped me work out how to go about this. I think, for my own use, I'm going to adjust each girl's config.ini file with the relevant tags, and go from there. Thanks again for your help.
 
Last edited:

EllenD

New Member
Mar 13, 2018
9
6
Which file did you find that in Ellen? I'm not a programmer, and I used Brackets to open the .exe file, but quickly discovered that the tags aren't in there. I want to check if there's a 'shaved' tag, as there's several vids where it's ambiguous whether they're shaved or hairy. I have been putting 'nohairy', thinking that it might realise the prefix 'no' to mean 'in the absence of...', but I just had a thought this morning that that likely isn't the case.
The function determineSubTagsFromGirl is at the end of WebmFinder.rpy. It mostly evaluate the subtags set from current clothes of the girl and combines them with the girl's traits, which can be configured in the girlConfig.ini of a girl. So there is no determined list of traits. However, trait “hairy” has just a small impact on a dialog when punishing a girl at her home, that she should go bottomless until next Monday. That's all. So in case you are preparing a girl's video, don't bother with the traits and use only subtags related to clothes. In common videos, you can use it, but I wouldn't bother with more than a hair color, as the clothed related subtags are sufficient.

So if you preparing a set of common videos, you can use either shaved or hairy as a subtag, and you can go through the girlConfig files of the girls you are playing with and add either of the traits there. But as Canadian_sausage confirmed, the girl's videos are prioritised over the common videos, and you wouldn't change this trait to have an effect on video selection. The main tag is what matters in case of girl vs. common videos. If the girl has her own video with the main tag, it uses the girl's video, if not then the common vids are searched.

If you want to know the relevant main tags, search the *.rpy videos for "webmFinder.get(" as the vids/_mainTags.txt is modified by tags found in any video while loading. At least I think that I saw a code doing it. But it does not change the code what main tags are used by the game options.
 

Smegmut

Newbie
Oct 30, 2020
49
21
The function determineSubTagsFromGirl is at the end of WebmFinder.rpy. It mostly evaluate the subtags set from current clothes of the girl and combines them with the girl's traits, which can be configured in the girlConfig.ini of a girl. So there is no determined list of traits. However, trait “hairy” has just a small impact on a dialog when punishing a girl at her home, that she should go bottomless until next Monday. That's all. So in case you are preparing a girl's video, don't bother with the traits and use only subtags related to clothes. In common videos, you can use it, but I wouldn't bother with more than a hair color, as the clothed related subtags are sufficient.

So if you preparing a set of common videos, you can use either shaved or hairy as a subtag, and you can go through the girlConfig files of the girls you are playing with and add either of the traits there. But as Canadian_sausage confirmed, the girl's videos are prioritised over the common videos, and you wouldn't change this trait to have an effect on video selection. The main tag is what matters in case of girl vs. common videos. If the girl has her own video with the main tag, it uses the girl's video, if not then the common vids are searched.

If you want to know the relevant main tags, search the *.rpy videos for "webmFinder.get(" as the vids/_mainTags.txt is modified by tags found in any video while loading. At least I think that I saw a code doing it. But it does not change the code what main tags are used by the game options.
Cool, thank you. I see what you mean about the individual girls' videos, but I was thinking to play with just the common vids, so that it's a new, random, but still relevant one each time. I'm incorporating hair-colour/ethnicity, clothing, big or small boobs, and hairy or not hairy in my tagging system. I'll check the tags and see if there is a 'shaved' then, as that'd fulfil my requirements. Thanks again for your help.
 

EllenD

New Member
Mar 13, 2018
9
6
Cool, thank you. I see what you mean about the individual girls' videos, but I was thinking to play with just the common vids, so that it's a new, random, but still relevant one each time. I'm incorporating hair-colour/ethnicity, clothing, big or small boobs, and hairy or not hairy in my tagging system. I'll check the tags and see if there is a 'shaved' then, as that'd fulfil my requirements. Thanks again for your help.
The “shaved” is not there, but if you check “game/HOW_TO_MOD.txt”, it will take you to Little Caprice as a reference girl. In her girlConfig.ini is more info about traits:

## hair : brown_hair, black_hair, blonde_hair, colored_hair, white_hair, auburn_hair
## eyes : brown_eyes, blue_eyes, hazel_eyes, green_eyes, gray_eyes
## boobs : small_boobs, average_boobs, big_boobs
## physical : hairy
## others : see game/DB.rpy => DB_traits for pre-set trait
## custom : you can specify any other traits, won't have 'active' effects but can work as a tag for photoshoots/events/etc...
So, as I mentioned before, you can use them in your videos, but you should also go through the girlConfig.ini files of the girls you are using and add it there to have an effect on vids as a tag. Also if you want to share your pack of common vids, then you should also add this as an instruction. Otherwise it would be useless. To be honest, I prefer girl's videos, although I added some common vids as well, as for some girls it is not easy to find a video for every main tag, but there are certainly some other players who might enjoy your work.
 
  • Like
Reactions: Smegmut
Sep 17, 2023
129
69
Are there any mod packs that contain more diverse body types? Thicker girls, specifically
No specific package that I'm aware of, there may be some thicker models in the ones done by some of the modders here.
If you have the free time, you can try making the models. It is quite easy, it's just time-consuming. The Little Caprice model in the game, along with the how_to_mod.txt file, will walk you through every step of making new models. You will need a few things though. You need pictures to create the bodyparts files, photosets and/or events, plus videos. Events and videos are pretty optional, but the model will rate better in the game if they have them. Having pictures is more important, something with 30+ images as a general minimum.
Since the pictures and video need to be .webp and .webm respectively, converters are needed, something like XnResize for batch image-processing and HandBrake Video Converter for, well, videos. You can also use screen2gif to capture your own videos.
If you do decide to make some, I hope you'll share them. If you like them, there is very likely somebody out there that would appreciate your work.

EDIT: I just wanted to provide an update, and maybe get some feedback.
You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:
  • Like
Reactions: jh1990

Frostfire281

Member
Jan 18, 2019
126
212
I've been running into a very strange bug lately, though it only affects one particular girl in my game. Her ass picture will randomly be replaced with a pussy or boobs picture. Everything in her folder is named correctly and of the correct file type. Anyone experienced anything similar?
 

Triactus

New Member
Aug 7, 2020
9
21
Quick question: Is there a reason why photos taken suddenly drop in value once the girl graduates? Right now, I have pictures from photoshoots that meet sponsor requirements at 140%, but once the girl graduates, her pictures now meet sponsor requirements at 30-40%. The same pictures for the same requirements. Is there a way for them to keep the same value? Whether the girls are currently at the school or not shouldn't affect the value of taken photographs, IMO.
 

Ninoss

Active Member
Donor
Game Developer
Nov 20, 2017
612
1,107
Quick question: Is there a reason why photos taken suddenly drop in value once the girl graduates? Right now, I have pictures from photoshoots that meet sponsor requirements at 140%, but once the girl graduates, her pictures now meet sponsor requirements at 30-40%. The same pictures for the same requirements. Is there a way for them to keep the same value? Whether the girls are currently at the school or not shouldn't affect the value of taken photographs, IMO.
That's weird, I'll look into that. Are you sure your are not using pics you already sent to the sponsors?
 

Triactus

New Member
Aug 7, 2020
9
21
That's weird, I'll look into that. Are you sure your are not using pics you already sent to the sponsors?
On second thought, nevermind. I went back and recreated it, to make sure. I probably didn't pay enough attention to the sponsor requirements because although graduated girls don't seem to appear in the smart search, the same exact demand from the sponsor yielded the same match % when I went directly in the girl's thumbnail. Sorry, I was sure I had checked the requirements the first time!

(On a side note, I started your Damsels and Dungeons Remastered game a week or two ago. Very nice work!)
 
Last edited:
  • Red Heart
Reactions: Ninoss

mangasm

Newbie
May 29, 2017
77
88
Here's an update to the hypno mod

- I fixed what I can do for the movies and haven't had any fullscreens besides when brainwashing is complete BUT the video you can click through and it lets you progress
- Added random videos I found online (this mod is a free parody please don't sue me)
- updated the tags and number of tags so it won't 404 on the webms
- included the tiny tiny content where you brainwash moms
- added the changes to review so you can see who is brainwashed
- the directories of the rar should be correct for the files structure my apologies if I got it wrong
- nothing is balanced

Enjoy
Are you planning to continue the Hypno Mod for new versions?
 
3.80 star(s) 19 Votes