init 9001 python: def cheatCoder(cheatcode): ret_ = False if cheatcode == "gallery": #GALLERY all_Gallery(1) ret_ = True if cheatcode == "itemsvr": #Items(DoA) addAllItems() ret_ = True if cheatcode == "itemsrl": #Items(Reality) global kim_xmas_gift global rachel_xmas_gift global npc_Rachel global npc_Kimberly if not checkItem(waiterClothes): addRealItem(waiterClothes) if not checkItem(gymCard): addRealItem(gymCard) if not checkItem(dressGift) and not npc_Rachel.plotProgress["dress"] == 3:#check addRealItem(dressGift) npc_Rachel.plotProgress["dress"] = 2 if not checkItem(VRGIFT):#check #check if not npc_Rachel.plotProgress["haveVR"]: addRealItem(VRGIFT) if not npc_Kimberly.plotProgress["haveVR"]: addRealItem(VRGIFT) if not checkItem(SleepingPills): addRealItem(SleepingPills) if not checkItem(Strapon): addRealItem(Strapon) if not checkItem(kimXmasGift) and not kim_xmas_gift == 2:#check kim_xmas_gift = 1 addRealItem(kimXmasGift) if not checkItem(rachelXmasGift) and not rachel_xmas_gift == 2:#check rachel_xmas_gift = 1 addRealItem(rachelXmasGift) ret_ = True if cheatcode == "vron": #VR - True global haveVR haveVR = True ret_ = True if cheatcode == "mikadoll": #Mika - Doll global ss_mika ss_mika = 2 ret_ = True if cheatcode == "ragdoll": #Ragdoll - Doll global ss_ragdoll ss_ragdoll = 2 ret_ = True return ret_