U
User_920791
Guest
Guest
This code makes the incest patch not work in android versions. By including all "extra content" directly in the game code, you are also violating Patreon's ToS.
Suggestion:
Suggestion:
Python:
## patch.rpy
$ Family_Friendly = True
label Family_Friendly_Scene1:
...
jump Family_Friendly_Scene2
label Family_Friendly_Scene2:
...
jump Family_Friendly_SceneN
Python:
## vanilla.rpy
label Vanilla_Scene1:
...
jump Vanilla_Scene2
label Vanilla_Scene2:
...
jump Vanilla_SceneN
Python:
## script.rpy
label start:
if Family_Friendly:
jump Family_Friendly_Scene1
else:
jump Vanilla_Scene1