How to

Deleted member 5846818

New Member
Game Developer
Feb 25, 2023
5
49
I want to create game but I want to release them in separate. Can someone help me with it? I am new to Renpy
 
Last edited:

osanaiko

Engaged Member
Modder
Jul 4, 2017
2,296
3,953
I want to create some scenes for the game but I want to release them in patches. Can someone help me with it? I am new to Renpy
Is this a game you already are making, or are you trying to add scenes to someone else's game?
 
Last edited:

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,369
15,284
Four years old thread, yet still the most complete answer for patch creation with Ren'Py. It regard more specifically incest patch, but everything said apply to all kind of patches.

This said Osanaiko question is important. Adding a scene for a third person game imply that you can copy the arts, whatever if it's 2D or 3D. While it don't change the way you write the code, it still make everything way more complicated.
 

blackmagic616

Member
Dec 29, 2019
453
494
This is my game. Some scenes are against Patreon guidelines that's why i want to create a patch for those scenes
Why don't you put the whole context into the game and then create a simple patch.rpy in game/ with variables that unlock controversial dialogues/assets/paths?

filf/game/patch.rpy:
Code:
init -2:
    $ persistent.patch_installed = True
   
   
   
label patch:
    $ pe = True
    $ p1 = "Bro"
    $ s1 = "Sis"
    $ c1 = "Cousin"
    $ c2 = "daughter"
    $ c3 = "cousin" #fr
    $ a5 = "Auntie"
    $ m = Character("Mom", color="#383FFF")
    $ a = Character("Aunt", color="#009E00")
kathoey/game/patch.rpy:
Code:
default MiKhaisMayKha = Character ("Sister")
default MiKhaisMayKha2 = Character ("Older sister")
default MayKhaisMiKha = Character ("Sister")
default MayKhaisMiKha2 = Character ("Younger sister")

default OliverisMiKha = Character ("Brother-in-law")
default PhoneKhaisKhas = Character ("Pa Pa")
menage_a_moi/game/patch.rpy:
Code:
init -2:
    $ persistent.patch_installed = True
milfy_city/game/patch.rpy:
Code:
default Linda_name_patched = "Mom"
default Sara_name_patched = "Sara" "Sister"
default Caroline_name_patched = "Caroline" "Sister"
default Bob_name_patched = "Dad"



default b0_patched = "Brother"
default b1_patched = "brother"
default b2_patched = "Bro"
default b3_patched = "bro"

default s1_patched = "Sister"
default s2_patched = "sister"
default s3_patched = "Sis"
default s4_patched = "sis"

default m1_patched = "Mom"
default m2_patched = "mom"
default m3_patched = "Mother"
default m4_patched = "mother"
default m5_patched = "Mommy"
default m6_patched = "mommy"

default d1_patched = "Father"
default d2_patched = "father"
default d3_patched = "Dad"
default d4_patched = "dad"

default a1_patched = "Aunt"
default a2_patched = "aunt"
default a3_patched = "Auntie"
default a4_patched = "auntie"

default x1_patched = "Family"
default x2_patched = "Relation"
default x3_patched = "Blood related"
default x4_patched = "Son"
default x5_patched = "son"
default x6_patched = "Parent's Bedroom"
default x7_patched = "Daughter"
default x8_patched = "daughter"
default x9_patched = "Siblings"
default x10_patched = "siblings"
default x11_patched = "Parents"
default x12_patched = "parents"
default x13_patched = "Parent"
default x14_patched = "parent"
the_red_room/game/patch.rpy:
Code:
init -70 python:
    persistent.NASTY_SHIT = True
young_again/game/patch.rpy:
Code:
init 1 python:
   rubyIs = _("sister")
   rubyYo = _("sis")
   annaIs = _("mother")
   annaYo = _("mom")
   annaYo2 = _("my mom")
   annaYom = _("Mom")
   rubyAm = _("brother")
   Iam = _("son")
   rubyAm2 = _("bro")
   zoeIs = _("sister")
But if you want to keep the controversial content completely outside of the main game, check this:
 
Last edited: