- Dec 17, 2017
- 7,426
- 9,693
Saves are the same for all platforms.Can i get save file for my cute roomate for android
Saves are the same for all platforms.Can i get save file for my cute roomate for android
I'm having the same problem. It seems I can't get "cured" without fucking the Dean.I didnt know i can fuck Dean when i triggered the spider event. I help her instead of fuck her... can i get the spider or trigger that event again? Thanks.
how to make dick firedI'm having the same problem. It seems I can't get "cured" without fucking the Dean.
https://f95zone.to/threads/my-cute-roommate-v1-6-1-ex-beta-astaros3d.5405/post-3228449hi everyone how sex last with roommate in bedroom?? i try last picture for roommate failure my cousin 4 heart love
please tell me
it's like that because of the pickle error they been having in the game pickle has been disabled for that reason that why loading and saving does take sometimeIs it only laggy for me? The Game keeps not responding and keeps very long to save or load... can anyone help?
Ok thx. Good to knowit's like that because of the pickle error they been having in the game pickle has been disabled for that reason that why loading and saving does take sometime
you will need to install a Greek font that have those special characters and import that to the game as wellQuick question : I am trying to translate this game in greek (for personal use, nothing serious).
Yet however when I change the text in the appropriate file in greek (yes we got special characters in our alphabet aswell), I only get like 1 / 10th of the letters and the rest are filled with square boxes.
I noticed that in Korean language this happens in 100% of the characters (except the names we give in the initiation).
So, I wanted to ask, is it something I must change to my PC, or must the "greek alphabet support" be added from the game creator?
Thanks in advance!
translate piglatin style default:
font "stonecutter.ttf"
translate piglatin python:
style.default.font = "stonecutter.ttf"
So the issue is I need to install a greek font as of a "Ren'Py greek characters mod" or something?you will need to install a Greek font that have those special characters and import that to the game as well
Style Translations
It may be necessary to change styles – especially font-related styles – when translating a game. Ren'Py handles this with translate style blocks and translate python blocks. These blocks can change language-related variables and styles. For example:
or equivalently:Code:translate piglatin style default: font "stonecutter.ttf"
When a language is activated – either at the start of the game, or after a language change – Ren'Py resets the styles to their contents at the end of the init phase. It then runs all translate python blocks and translate style blocks associated with the current language, guaranteeing that blocks appearing earlier in a file are executed first. Finally, it rebuilds styles, allowing the changes to take effect.Code:translate piglatin python: style.default.font = "stonecutter.ttf"
Style translations may be added to any .rpy file.