andy7781

Newbie
Nov 15, 2018
77
65
what puts me off with this game is the fact some of main characters seem to keep changing nationalities. 1 minute chris is almost white in another scene shes extremely dark brown. its like its not the same character and we suppose just not notice that it looks like she just spent 48 hours stuck in a tanning booth then 2 mins later she almost white again. really? story and game play itself is fine but once you decide how the characters should look then leave them like that as for me it becomes off putting when they keep changing so much.
 

Furtiv3 Pygmy

Member
Oct 2, 2017
180
41
Can someone tell me where I should put this? :unsure:


# code inspired by bossapplesauce @ f95zone
init python:
hardcoded = {}

def rel_rest(text):
def text_repl(t):
if t.group(0).startswith("goddaughter"): return "niece"
elif t.group(0).startswith("godfather"): return "uncle"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?:godfather|goddaughter)', text_repl, text )

config.say_menu_text_filter = rel_rest
 
  • Like
Reactions: bas

the66

beware, the germans are cumming
Modder
Donor
Respected User
Jan 27, 2017
7,655
23,748
Can someone tell me where I should put this? :unsure:


# code inspired by bossapplesauce @ f95zone
init python:
hardcoded = {}

def rel_rest(text):
def text_repl(t):
if t.group(0).startswith("goddaughter"): return "niece"
elif t.group(0).startswith("godfather"): return "uncle"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?:godfather|goddaughter)', text_repl, text )

config.say_menu_text_filter = rel_rest
put it back into the file you've found it and drop this file into the game folder or your installation.
 

Ironhuman

Newbie
Feb 14, 2019
90
71
Can someone tell me where I should put this? :unsure:


# code inspired by bossapplesauce @ f95zone
init python:
hardcoded = {}

def rel_rest(text):
def text_repl(t):
if t.group(0).startswith("goddaughter"): return "niece"
elif t.group(0).startswith("godfather"): return "uncle"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?:godfather|goddaughter)', text_repl, text )

config.say_menu_text_filter = rel_rest
 
3.90 star(s) 181 Votes