Search found 2 matches

by LegsWild
Thu Apr 25, 2024 4:09 am
Forum: Ren'Py Questions and Announcements
Topic: Fixed list of rpy / py files to parse
Replies: 0
Views: 99

Fixed list of rpy / py files to parse

A short background: I've made a game with some kind of lock-code. It's pretty easy to work-around this code by writing a .rpy file, put it in the game directory and overload the checker function. So my idea would be, when the distribution starts, there should be a .txt file containing all valid impo...
by LegsWild
Fri Feb 02, 2024 4:15 am
Forum: Ren'Py Questions and Announcements
Topic: Database
Replies: 8
Views: 4050

Re: Database

That's how I use yaml: With RenPy 8.2.0 you can use the pip yaml package: https://pypi.org/project/PyYAML/#files / 6.0.1 I copied utar://PyYAML-6.0.1/lib/yaml to my game directory. Then I've added a simple helper function: init python: import yaml def load_yaml(filename): f = open (renpy.loader.tran...