Heard about it. Just wonder, if originally MC was a son of Sophia and brother of Suzie.The problem with the original game wasn't incest, but it's loli content.
Ah, so that what this was. I had to come looking for answers because I was very confused after opening the game so many times and this time it was different.I have code in the game to check system date, and change the main menu music / art depending on seasonal events like Halloween, Valentines Day, Easter, Christmas etc etc
Which characters are affected by the incest patch?Version: 0.7.0
Android install instructions
You don't have permission to view the spoiler content. Log in or register now.
Fan-made patch has been retrofitted by me, and should work with no problems.
If you do have problems, let me know and I will apply fix and update!
Normal saves are incompatible with the patch, and vice versa.
If you attempt to load a non patched save, you will crash!! You can only load patched saves with the patch!!!
found the easter egg after an eternity of looking
Why would you make two separate posts for just that? This is a forum, mate, not Discord... There is absolutely no point whatsoever in writing two posts within as many minutes if there haven't been any responses in-between.darius
ethnicity: cuckasian
occupation: being a cuck
lmfao
Let people have their fun bud. You want a say then become a mod and throw your weight around. Otherwise don't be one of the guys on here trying to correct people like children. It's a bad look.Why would you make two separate posts for just that? This is a forum, mate, not Discord... There is absolutely no point whatsoever in writing two posts within as many minutes if there haven't been any responses in-between.
-Mal
And yet here you are doing the exact same thing as I did, only you are targeting someone for no valid reason whatsoever, whereas I was at least trying to help keep things neat and tidy. Hypocrite much?Let people have their fun bud. You want a say then become a mod and throw your weight around. Otherwise don't be one of the guys on here trying to correct people like children. It's a bad look.
Sure buddy.And yet here you are doing the exact same thing as I did, only you are targeting someone for no valid reason whatsoever, whereas I was at least trying to help keep things neat and tidy. Hypocrite much?
-Mal
How did you find it?/Where is it?found the easter egg after an eternity of looking
I was talking about the gallery easter egg, not the character profiles, but thanks for that
Are you talking about the Android version? In the PC version, it seems like you can scroll back with the mouse wheel; it doesn't seem to be blocked. Or is it?is there a way to enable the roll back feature with version 7? Sometimes I advance a stage before I should and miss relevant information. Have to load a Autosave and go back a ways.
Thanks in Advance/
init 999 python:
renpy.config.rollback_enabled = True
renpy.config.hard_rollback_limit = 256
renpy.config.rollback_length = 256
def unren_noblock( *args, **kwargs ):
return
renpy.block_rollback = unren_noblock
try:
config.keymap['rollback'] = [ 'K_PAGEUP', 'repeat_K_PAGEUP', 'K_AC_BACK', 'mousedown_4' ]
config.keymap['game_menu'] = [ 'K_ESCAPE', 'K_MENU', 'K_PAUSE', 'mouseup_3' ]
config.keymap['skip'] = [ 'K_LCTRL', 'K_RCTRL' ]
config.underlay[0].keymap['quickSave'] = QuickSave()
config.keymap['quickSave'] = 'K_F5'
config.underlay[0].keymap['quickLoad'] = QuickLoad()
config.keymap['quickLoad'] = 'K_F9'
except:
pass