define LoadedIncestPatch = False init 2 python: def OnIncestPatchLoaded(): global LoadedIncestPatch global VRoomie1 global VRoomie2 global VRoomie3 global VGuard global VDear global VDude1 global VLandLady if not LoadedIncestPatch: VGuard = "mom" VRoomie1 = "sis" VLandLady = "aunt" VDear = "son" VDude1 = "bro" VRoomie2 = "cousin" VRoomie3 = "cousin" VEleanorLewd = "mom" VEleanorMCLewd = "son" LoadedIncestPatch = True LogInfo("Executed OnIncestPatchLoaded, mods done") else: LogInfo("Executed OnIncestPatchLoaded, no Mods done") return init 2: $AddLoadCallback(OnIncestPatchLoaded) $LogDebug("Added Callback For '{0}'".format("OnIncestPatchLoaded"))