Search found 128 matches
- Mon Jun 03, 2019 10:42 am
- Forum: Development of Ren'Py
- Topic: Ren'Py homebrew port to Nintendo Switch
- Replies: 61
- Views: 35191
Re: Ren'Py homebrew port to Nintendo Switch
Hi, can I check the launch on this emulator? Or a big difference in software? https://yuzu-emu.org I have only tested on real hardware, not using emulators. Understand you, if you make detailed instructions https://github.com/uyjulian/renpy-switch/blob/master/external_library_build/quick_and_dirty_...
- Mon Jun 03, 2019 12:15 am
- Forum: Development of Ren'Py
- Topic: Ren'Py homebrew port to Nintendo Switch
- Replies: 61
- Views: 35191
Re: Ren'Py homebrew port to Nintendo Switch
I made a quick-and-dirty homebrew port using devkitPro and libnx of Ren'Py to the Nintendo Switch. Downloads can be found at https://github.com/uyjulian/renpy-switch/releases For users wanting to take a sample of the functionality of Ren'Py, use renpy-switch-the-question package. For game authors w...
- Sun Jun 02, 2019 2:37 pm
- Forum: Development of Ren'Py
- Topic: Ren'Py homebrew port to Nintendo Switch
- Replies: 61
- Views: 35191
Ren'Py homebrew port to Nintendo Switch
The project is now archived. Since Switchroot Android has gotten a lot better over the past couple of months, please use it with the official Android port of Ren'Py instead. Old info: This is a port of Ren'Py, a visual novel game engine, to the Nintendo Switch for homebrew purposes. If you are looki...
- Sat May 25, 2019 7:37 am
- Forum: Ren'Py Questions and Announcements
- Topic: Encypter?
- Replies: 5
- Views: 853
Re: Encypter?
1. If you are on Windows, install Ubuntu from the WSL store
2. Open up a bash command prompt
3. run sudo apt-get install python
4. run python /path/to/rpatool -o /path/to/output/directory -x /path/to/archive.rpa
5. run python /path/to/unrpyc.py /path/to/file1.rpyc /path/to/file2.rpyc etc...
2. Open up a bash command prompt
3. run sudo apt-get install python
4. run python /path/to/rpatool -o /path/to/output/directory -x /path/to/archive.rpa
5. run python /path/to/unrpyc.py /path/to/file1.rpyc /path/to/file2.rpyc etc...
- Wed May 22, 2019 2:09 am
- Forum: Ren'Py Questions and Announcements
- Topic: Crypto "ZiX Solutions"
- Replies: 4
- Views: 395
Re: Crypto "ZiX Solutions"
You can also use a path longer than 32767 characters and non-ASCII non-extended characters to prevent that file from being extracted by the current versions of rpatool and unrpa. Absolute paths won't work because both the aforementioned tools prepend the current directory. Reserved filenames may pre...
- Wed May 22, 2019 1:49 am
- Forum: Ren'Py Questions and Announcements
- Topic: Encypter?
- Replies: 5
- Views: 853
Re: Encypter?
Look for unrpyc and/or rpatool.
- Sat May 18, 2019 11:56 am
- Forum: Ren'Py Questions and Announcements
- Topic: Crypto "ZiX Solutions"
- Replies: 4
- Views: 395
Re: Crypto "ZiX Solutions"
You can use https://www.renpy.org/doc/html/config.h ... n_callback and implement your own archive format.
- Thu Apr 25, 2019 12:52 pm
- Forum: Development of Ren'Py
- Topic: Ren'Py for the web browser
- Replies: 94
- Views: 22541
Re: Ren'Py for the web browser
There is a Ren'Py fork for Switch: https://github.com/nx-python/renpy
Since the emscripten work added support for building statically, I might try to update the version of Ren'Py. Also, pthreads and std::thread support has been added recently to libnx/devkitA64.
Since the emscripten work added support for building statically, I might try to update the version of Ren'Py. Also, pthreads and std::thread support has been added recently to libnx/devkitA64.
- Mon Sep 10, 2018 11:08 pm
- Forum: Ren'Py Cookbook
- Topic: [Tutorial] How to save space in your Ren'Py game
- Replies: 6
- Views: 5835
Re: [Tutorial] How to save space in your Ren'Py game
Decreasing the -q parameter in cwebp may give you blurry results. That may not be what you want. If you prefer sharpness over number of colors, using pngquant and cwebp -lossless may give similar size, but sharper quality. The AV1 bitstream is frozen. There is a specification for the AVIF format, bu...
- Thu Jun 14, 2018 11:35 am
- Forum: Development of Ren'Py
- Topic: The return of macOS support in -all packages?
- Replies: 1
- Views: 465
The return of macOS support in -all packages?
You can remove app translocation in macOS automatically: https://objective-see.com/blog/blog_0x15.html https://lapcatsoftware.com/articles/detect-app-translocation.html Use mySecTranslocateIsTranslocatedURL to check if app is translocated, mySecTranslocateCreateOriginalPathForURL to get original pat...
- Mon Feb 19, 2018 4:13 pm
- Forum: Ren'Py Cookbook
- Topic: [Tutorial] How to save space in your Ren'Py game
- Replies: 6
- Views: 5835
Re: [Tutorial] How to save space in your Ren'Py game
I will release a new tool soon, which will allow you to save space by just pointing the tool to your Ren'Py game directory, which may or may not be archived. I will add advanced options, each for images/video/audio, to select what quality you want. Max quality audio will be compressed with libwavpac...
- Sat Aug 19, 2017 2:17 pm
- Forum: Ren'Py Cookbook
- Topic: [Tutorial] How to save space in your Ren'Py game
- Replies: 6
- Views: 5835
[Tutorial] How to save space in your Ren'Py game
These commands will allow you to reduce your game's space up to 90% without any script editing. Change directory to your game's project directory first. Please note that the original files will be deleted, so if you want the original files to be kept, copy the original files outside of your game's p...
- Sat Mar 18, 2017 10:20 am
- Forum: Ren'Py Questions and Announcements
- Topic: Passing username and password through updater.update()?
- Replies: 4
- Views: 570
Re: Passing username and password through updater.update()?
If you want your game files to be secure when transmitting through the Internet, use https.
If you don't have HTTPS on your server already:
https://letsencrypt.org/
If you don't have HTTPS on your server already:
https://letsencrypt.org/
- Thu Mar 16, 2017 6:06 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py Game Chooser sample code
- Replies: 6
- Views: 958
Re: Ren'Py Game Chooser sample code
Sorry, but I'm very untrusting when it comes to the internet. Could you elaborate a bit on what is inside the zip, how to use it, and its exact purpose? Why do you need a multi game launcher when you have Ren'Py? I pasted the code into Github. If you want to pack multiple Ren'Py games and you want ...
- Mon Mar 13, 2017 11:37 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Ren'Py Game Chooser sample code
- Replies: 6
- Views: 958
Re: Ren'Py Game Chooser sample code
ah, okay.
Can a mod move it there?
Can a mod move it there?