Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+2)

An excellent resource! I just wanted to add that there are `alt` and `noalt` text tags that can help reduce some of the code when consideringn self-voicing - for example:

if _preferences.self_voicing: 
    jasper "Hey, I didn't say any of this to be nice!"
else:
    jasper "Wuh- Hey, I didn't say any of this to be nice!"

can become

jasper "{noalt}Wuh-{/noalt} Hey, I didn't say any of this to be nice!"

You can read more about them here:
https://www.renpy.org/doc/html/text.html#text-tag-alt
https://www.renpy.org/doc/html/text.html#text-tag-noalt

Oooooh this is really good! Thank you for sharing :D
I believe I didn't use these in my code because they were added in Renpy 7.4, and my games still use Renpy 7.3. That means it's a great new feature that devs can make use of!