3.30 star(s) 9 Votes

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,040
I found a way to fix it.

You have to modify the file /renpy/common/00keymap.rpy.

At line 42, replace

Code:
help = [ 'K_F1', 'meta_shift_/' ],
by

Code:
help = [ ],
Save the file and you can now access the menu via esc or right click ;).

for the dev, if you want to add F1 as a key to access menu, add it at line 32 like this :

Code:
game_menu = [ 'K_ESCAPE', 'K_MENU', 'K_PAUSE', 'mouseup_3' ,'K_F1],
Anyway, the screenshots of your game looks good , i'll test it ;).

edit: My solution won't work if you're starting the game for the first time. you have to close it and launch it again.
this was close ;)

but do it this way

help = [ 'K_F1', 'meta_shift_/' , 'mouseup_3' ],
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,088
6,040
If someone was to start learning Renpy, would they find that the default keymap that comes with a new project has ESC and also right click to access the menu as standard?

Because if that's the case then that means this author went out of their way to change it to change BOTH of those things to something different from 99% of other renpy games.
the keymap is fine - nothing unusual

must be somewhere else where this is changed - but cant find it :(
 

pussyreaperxxx

Active Member
Oct 18, 2018
597
922
I don't think I have ever been so annoyed with a game design choice as this VN not using an esc button. Please don't reinvent the wheel, I save at least once every 30 seconds this actually tires me out. But then I realize there's 4 pages already of people complaining about it so yeah.
 

Xo Mo

Member
Game Developer
Aug 12, 2020
249
505
The premise is promising and strong, but the writing translation into English could use some polishing. A few phrases confuse me, especially when using gender-pronouns, He, She, Him, Her...
 
  • Like
Reactions: Robert Monotoli

Takkertje

Well-Known Member
Mar 4, 2020
1,017
1,279
I found a way to fix it.

You have to modify the file /renpy/common/00keymap.rpy.

At line 42, replace

Code:
help = [ 'K_F1', 'meta_shift_/' ],
by

Code:
help = [ ],
Save the file and you can now access the menu via esc or right click ;).
Works like a charm!
Mom is a convincing beauty.

Curious about further development.
 
3.30 star(s) 9 Votes