News:

Please request registration email again and then check your "Spam" folder

Former www.henthighschool.com

I want to change it so that another tag image appears.

Started by hayyo0455, Oct 15, 2024, 01:49 PM

Previous topic - Next topic

hayyo0455Topic starter

I wondered if there were overlapping 'cosplay' tags in Wear a Sexy Outfit and Make Her Play a Role options in naked training.

So, personally, I would like to make sure Wear a Sexy Outfit has a 'lingerie' or 'libido' tag image that is not a 'cosplay' tag.

How can I change it?

In addition, the Rape her option also wants to have 'sub' tagged images.

For example, if you chose sex in Rape her, you would see an image with 'sex' + 'sub'.

Jman

For the first question, go to 'BKInit_variables.rpy', find this line:
    fix_dict = {
                ...
                "cosplay" : Fixation("cosplay", acts=("naked", "fetish", "bisexual"), step=1, attribute="extravert", tag_list=(["cosplay"], ["maid", "kimono"], ["swim", "waitress", "dancer"]), not_list=["naked"], cannot_have_neg=["roleplay"]),
                ...
               }
and change it to something like this:
    fix_dict = {
                ...
                "cosplay" : Fixation("cosplay", acts=("naked", "fetish", "bisexual"), step=1, attribute="extravert", tag_list=(["lingerie"], ["libido"]), not_list=["naked"], cannot_have_neg=["roleplay"]),
                ...
               }

The rape bit doesn't have 'sub' in it, but you can add it reasonably easily: go to BKInteractions.rpy, find this line
label slave_rape(girl, act): # If girl refused and was forced
    ...
    $ pic = girl.get_pic(act, "naked", "rest", "profile", not_tags = not_tags, hide_farm=True, pref_filter=True)
and change it to this:
label slave_rape(girl, act): # If girl refused and was forced
    ...
    $ pic = girl.get_pic(act, "naked", "rest", "profile", and_tags = ['sub'], not_tags = not_tags, hide_farm=True, pref_filter=True)
And with strange aeons even death may die...

hayyo0455Topic starter

Thank you for your help.

Thanks to you, I was able to see images that fit Rape.

But for the first question, I want the 'cosplay' tag to appear separately only in Wear a Sexy Outfit option, rather than changing it to lingerie itself, and I hope the cosplay tag still works well in other options.

Still, the Rape tag alone is satisfying for me and the first problem seems pretty complicated, so I'm sorry to ask for more help, so you don't have to help. Thank you for your help.

Jman

I am not quite sure what you want to appear and where, then. Both 'Wear a Sexy Outfit' and 'Play a Role' have 'cosplay' right now, the above changes make the latter the 'cosplay' option and the former shows you sexy pictures that don't necessarily have cosplay. But you can change those tags as you like.

The 'lingerie' tag is poorly supported, AFAIK, so while I put it there as the first priority, it most likely will get skipped for most girls.


Can you say exactly which tag combinations you want for both of these options? The only somewhat more complicated thing would be if you wanted something more than the combination of 'naked [other tag]', like 'naked cosplay strip'.
And with strange aeons even death may die...

hayyo0455Topic starter

It's perfect.

I only understood by looking at the contents of the code and simply changing the contents of the 'cosplay' tag to 'Lingerie'.

When I actually applied it, it definitely applies separately as I would like.

I knew that "Wear a Sexy Outfit" and "Play a Role" would bring in the same cosplay tag, so I didn't know that it would be applied separately just by changing it like that.

I have no complaints about the training options now.

Thank you. :D