I didnt know this was a thing. I wonder, would it be possible to implement my fetish events into the main game for every girl, using the appropriately tagged pictures (preg, futa, roleplay) within their packs? I can write more dialogue if needed and even more event parts, its the programming and technicalities that's giving me a hard time.
Pack makers could then simply tag the picture as usual, and bam it works. Even better, we could then update the game's F95 page with those tags, opening up the game for people with a wider range of interests. More players mean more activity, and hopefully more community content like packs and mods.
Yes, easily possible as a mod!
1) Main issue: By default Brothel King doesn't recognise the "futanari" and "pregnant" image tags. Would need to ask Goldo to add them to the tag_dict, or have your mod or another mod modify the tag_dict (Trait King does this, so you can test it with Trait King enabled for starters)
Once that's done, you can use get_pic to search in girlpacks for those tags, like this:
2) If you want different girls to respond/talk differently in the event, write lots of alternative versions for dialogues in your mod (there are 23 personalities in total, see
You must be registered to see the links
)
If you want to start simple, you can start by writing 8 slightly more generic versions instead of 23 personality-specific ones. Here's an example from Trait King for different variations on new years greetings:
3) When should this event happen? It's probably not going to be a button-press like it is now... By random chance? Under certain conditions such as high love or high stat X?
And some people will be playing with 80%+ of their girlpacks having extended tags, some with only 1%. You need to consider how to balance things so that those 80%-ers don't get sick of having hundreds of pregnancies, without making it so rare that the 1%-ers never see one.
Feel free to ask for help for the rest of the programming/technicalities you may have (preferably on the HHS-forum) but it's better if you stumble around a little bit first. Helping with this will become easier once you have more specific questions to ask.