Shardee

New Member
May 11, 2024
5
7
Can anyone suggest more games like this? Particularly I mean with scenes similar to the ones where Satoshi "catches" Kendo and Mary but is too dumb/blind to catch on but the player can see.
 
  • Like
Reactions: G. Marquez

No Try Studios

Developer of The King of Summer
Game Developer
Nov 30, 2022
460
2,100
2nd time nobody's answering me :cry:
Is the bottle game that hard, I'm stuck with the same scenes. o_O
Given the number of corruption points, maaaybe you still haven't done the crowning events? Select the crown icon once either Mary or Shizuka are the last ones left standing.
For those who really want it, here's quick and dirty way to change MC (Satoshi) name to your liking. I'm sorry if my describing sucks.
First, you need this piece of code to change MC name in dialogues (download it in attachments). You can pretty much use any text editor for this:

Code:
init 999 python:
    def replace_text(t):
        t = t.replace("Satoshi", "Your name here") 
        return t
    config.replace_text = replace_text
Obviously "Your name here" gonna be replaced with your desired name.
Save and insert into game folder.
Lastly you need to manuylly change MC name tags.
Look for file "characters_and_others.rpy" open it with text editor and search for lines:
Code:
define s = Character("Satoshi",  color="#ffffff",
then
Code:
define sn = Character("Satoshi",  color="#ffffff",
and lastly
Code:
define sandk = Character("Satoshi and Kendo",  color="#ffffff",
Change the Satoshi with name of your liking save and play.

(I know my describing might truly sucks but I hope you will find this usefull :))
Yeah, this would work if you want to do this. Only drawback is that there are plenty of instances where Satoshi's name is written as "Sato...shi..." or "S-Satoshi...". So you'll still get called those names at some point, but I imagine nothing people who want to self-insert can't ignore.
 

slim-kr

Member
Aug 1, 2019
159
348
Given the number of corruption points, maaaybe you still haven't done the crowning events? Select the crown icon once either Mary or Shizuka are the last ones left standing.
Thanks, but where is the crown, I've had them last many times and can't find it :/
 

SweatyDevil

Member
Jan 8, 2022
483
1,252
Yeah, this would work if you want to do this. Only drawback is that there are plenty of instances where Satoshi's name is written as "Sato...shi..." or "S-Satoshi...". So you'll still get called those names at some point, but I imagine nothing people who want to self-insert can't ignore.
Yeah, for instance, she yelled out to him "Satoshiiii" at the beginning. Now imagine if you decided to choose Martin as your name. Martiniiii. You'd never know if she was calling him or making an order for a cocktail :LOL:. Still, I suppose, for those who want to try this to have they own specific name, better than nothing.
 
3.80 star(s) 68 Votes