Those are ren'py engine files. So it would be better to leave them alone if you don't know what you're doing
Like I said, look for the unren.bat in the forum (
You must be registered to see the links
) , it's a nice little tool that extracts those archive.rpa files and can decrypt .rpyc files to .rpy files
If you did that you can easily follow the steps above again
There are other ways to do it though, I could create a file for you that you'd just have to place inside the /game/ folder and edit the mentioned numbers to your preferred size...
I added the file to this post... you could even change the fonts if you wanted to... well the file is just a copy of our own gui.rpy or better said of that specific parts of it. everything with a "#" <--- infront of it is a comment, I commented out the fonts so that they don't get changed, if you'd want to change them to a font you have as a .ttf file just place the font into the /game/ folder and delete the # infront of the specific font you want to change, then place the name of the .ttf file behind the "=" sign looking like this then:
Code:
## The font used for in-game text.
#gui.text_font = "fontFile.ttf"
to
Code:
## The font used for in-game text.
gui.text_font = "MyCoolFontFile.ttf"
p.S.: Once setup this file can be used in any ren'py game.