News:

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

Former www.henthighschool.com

Modding Question

Started by darthdestroyeis, Jul 03, 2022, 08:30 PM

Previous topic - Next topic

Goldo

Quote from: Yasaki74 on Jan 28, 2024, 03:41 PMhttps://imgur.com/tACH7tE
ok I've found where the image come from I think? though idk how this part work, would you mind explaining this part to me?
I was hoping to change the girl profile when a girl change clothing

no need to explain the farm or slave market part but maybe the free part :3

I'm sorry but can you recap your original question? Even looking through your comments' history I couldn't quite figure it out.

profile is an attribute of the Girl class, if you want to implement a clothing system your best bet is to change the girl.profile picture every time there is a change of clothes.
Maker of BK. Looking for the latest patch for BK 0.2? The link doesn't change, so bookmark it!

nneezz

I tried to bump up the game resolution to 2048 and found that the side image overlaps the text. Anyone know how to fix this?

Spoiler
[close]

Goldo

Quote from: nneezz on Apr 18, 2024, 05:06 PMI tried to bump up the game resolution to 2048 and found that the side image overlaps the text. Anyone know how to fix this?

Spoiler
[close]

You need to fiddle with the 'Say' screen in screens.rpy, looking around these lines:
    # If there's a side image, display it above the text.

    if side_image: # This is for Girl.char objects
        fixed xsize res_portrait_size ysize res_portrait_size xalign 0.0 yalign 1.0:
            add side_image xalign 0.5 yalign 0.0

    else:
        add SideImage() xalign 0.0 yalign 1.0

This will take a bit of Ren'py knowledge. Nevertheless, it's unlikely to be your only problem at such a large resolution, so you should be prepared to do a bit more customization of screens if you want to keep it up.
Maker of BK. Looking for the latest patch for BK 0.2? The link doesn't change, so bookmark it!