Ren'Py Harem Kingdoms [v0.12] [Pandora Entertainment]

1.50 star(s) 2 Votes

GamleErik89

Member
Sep 13, 2018
371
967
For anyone hating the hardcoded cps=50, use this:
Python:
init python:
    def remove_cps_tags(text):
        import re
        # Remove {cps=*} tags, preserving other text and tags
        return re.sub(r'\{cps=\d+\}', '', text)

    # Apply the filter to all dialogue
    config.say_menu_text_filter = remove_cps_tags
Either DL the one attached, or just make a new textfile with an appropriate name(remember to change the format to .rpy) and yeet it into the /game folder

Also, for the dev: Stop using the {cps=*} tag. You do not need it. Let the players decide the text speed via the slider. We're just going to either edit it out or use the above code to get around it anyhow. In other words: Read the manual. This kinda stuff just pisses people off. :HideThePain: Also; Add images to the relationship screen, so we get to see who we're supposed to have said relationship with.
 

vilewe7570

Active Member
Oct 5, 2021
759
1,140


Hi, first, I want to apologize for the delay (this update was supposed to come out 2 weeks ago). This time, I bit off more than I could chew, so the update ended up being delayed. Sorry about that. That said, let's get to the important stuff:

-----Changes List--------

Game Systems

- Shop UI, with its corresponding functionality (selling, buying, item info, etc.)
- Vertical Chests
- Button sounds for: close, main menu, pause menu, girl cards, and social media.
- Use affection skill values for girl affection increases (previously, a fixed value was used).
- Changed the outline color of the social media buttons. It's now light blue.

Bug Fixes
-Fixed A bug that prevented players from entering houses at night even if the requirements were met.
- Incorrect chest images.
- Fixed A bug that make girls quests within the profile move from left to right.
- Fixed A bug that make girls menu items move from left to right.
- Fixed A bug that make Inventory and chest items move from left to right.
- Fixed the information displayed for non-battle skills. It should not be percentages ("%") but rather pluses ("+").

Girls
- 1 new red-tier quest for Yua (with rewards).
- 3 new map locations for Yua (with their respective interactions).
- 1 new red-tier quest for Hanako (with rewards).
- 4 new map locations for Hanako (with their respective interactions).
 

5mithers

Member
Aug 3, 2019
388
416
Hmm...The starting character relationship input is oddly structured... At least from other titles I've played that allow relationship setup.

MC's relationship with Akiko = (homeowner?) Well I'm not sure what to put here.
Akiko relation to MC = (tenant) This looks like its a double entry for sister...but I'm not sure.)
MC's relationship to Akiko = (roomate) Brother?
Akiko's relationship to MC = (roomate) Sister?

Then I see this next frame and now I'm wondering if Akiko is actually a dude. :KEK:
View attachment 4238073
Regards,
Yeah, it's all backwards.


MC's relationship with Akiko = (homeowner?) Well I'm not sure what to put here.
-> this sentence should be "What is Akiko's relationship to the MC" Akiko is his "mother"/"homeowner".

Akiko relation to MC = (tenant) This looks like its a double entry for sister...but I'm not sure.)
-> this sentence should be "What is the MC's relation to Akiko?" The MC is Akiko's "son"/tenant.


MC's relationship to Akiko = (roomate) Brother?
-> Again backwards. This should be "What is Aiko's relationship to the MC? Aiko is the MC's "sister"/"roommate"

Akiko's relationship to MC = (roomate) Sister?
-> this sentence should be "What is the MC's relationship to Aiko?" The MC is Aiko's "brother"/"roommate"

So TL;DR The answers (assuming you want incest-like relationships) should be in order:
  • mom
  • son
  • sister
  • brother

The answers are reverse from the way the questions are phrased. Context clues eventually get you to the right answer, but then the summary is broken with an early variable substitution:

2nd to last question asks if you want to call your mom, "mom". 1758320306857.png
Followed by already substituting Akiko for mom. lol:
1758320330048.png


*Edit Additional bug report: The text speed options in the menu do nothing. Game displays text at a fixed rate.
 
Last edited:
  • Like
Reactions: Gojii and MrBenny

BadAttitude

New Member
Oct 3, 2024
2
0
For anyone hating the hardcoded cps=50, use this:
Python:
init python:
    def remove_cps_tags(text):
        import re
        # Remove {cps=*} tags, preserving other text and tags
        return re.sub(r'\{cps=\d+\}', '', text)

    # Apply the filter to all dialogue
    config.say_menu_text_filter = remove_cps_tags
Either DL the one attached, or just make a new textfile with an appropriate name(remember to change the format to .rpy) and yeet it into the /game folder

Also, for the dev: Stop using the {cps=*} tag. You do not need it. Let the players decide the text speed via the slider. We're just going to either edit it out or use the above code to get around it anyhow. In other words: Read the manual. This kinda stuff just pisses people off. :HideThePain: Also; Add images to the relationship screen, so we get to see who we're supposed to have said relationship with.
Thank You
 
1.50 star(s) 2 Votes