HOW TO ADD CUSTOM PICTURES AND VIDEOS TO THE GAME --- Why --- It should be automatic, right? Well, the engine of the game (basically just HTML and Javascript) makes that impossible, for security reasons. It is however pretty simple to do it with this method, as the script countresources.py will update the main HTML to include your files. --- Prerequisites --- You will need Python installed on your system to update the game after adding custom files. If you don’t have Python installed, download it from python.org. Ensure that the Python installation includes the option to run Python scripts from the command line (this is usually included by default). ---Steps to add Pictures and Videos:--- 1. Locate the folders: The root folder for each girl type is images/girls/{girl-type}/{girl-age} Images (use .jpg format) go in {girl-folder}/meet/{location} Videos (use .webm format) go in {girl-folder}/{clothing-level}/{action} 2. Name your files: When adding new pictures or videos, use simple number-based file names to maintain the format the game expects. Find the highest existing number in the folder and name your new file with the next number in sequence. For example: If the last image is 12.webm, name the next one 13.webm 3. Update the game: Once your files are added, you need to run a Python script to update the game so it recognizes the new resources. This script will automatically recount the resources and update the necessary game files to include your new pictures and videos. Open a command prompt or terminal in the root folder of the game (where the script is located). Run the following command: python countresources.py 4. Launch the Game: After running the script, launch the game as usual. Your custom pictures and videos will now be included. --- Additional Notes --- Make sure your custom files match the required formats: .jpg for images and .webm for videos. Avoid skipping numbers when naming your files, as it may cause issues when the game loads resources.