2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
label start:
|
2023-03-02 23:06:16 +00:00
|
|
|
python:
|
|
|
|
version = version_float()
|
|
|
|
renpy.block_rollback()
|
|
|
|
|
2022-05-16 23:48:22 +00:00
|
|
|
jump start_wt
|
|
|
|
|
|
|
|
label start_quick:
|
|
|
|
python:
|
2023-03-23 21:25:38 +00:00
|
|
|
version = version_float()
|
2022-05-16 23:48:22 +00:00
|
|
|
game.difficulty = 2
|
|
|
|
ton_friendship = 5
|
|
|
|
sna_friendship = 5
|
2023-03-31 22:41:48 +00:00
|
|
|
states.map.unlocked = True
|
2022-05-16 23:48:22 +00:00
|
|
|
game.cheats = True
|
|
|
|
|
2023-03-02 23:06:16 +00:00
|
|
|
renpy.block_rollback()
|
|
|
|
|
2022-05-16 23:48:22 +00:00
|
|
|
jump skip_to_hermione
|
|
|
|
|
|
|
|
label start_dev:
|
|
|
|
python:
|
2023-03-23 21:25:38 +00:00
|
|
|
version = version_float()
|
2022-05-16 23:48:22 +00:00
|
|
|
game.difficulty = 2
|
|
|
|
game.cheats = True
|
|
|
|
game.gold = 100000
|
2023-03-31 22:41:48 +00:00
|
|
|
states.map.unlocked = True
|
2022-05-16 23:48:22 +00:00
|
|
|
snape_unlocked = True
|
|
|
|
tonks_unlocked = True
|
2023-03-31 22:41:48 +00:00
|
|
|
states.her.unlocked = True
|
|
|
|
states.cho.unlocked = True
|
2022-05-16 23:48:22 +00:00
|
|
|
astoria_unlocked = True
|
|
|
|
susan_unlocked = True
|
|
|
|
luna_unlocked = True
|
|
|
|
tonks_wardrobe_unlocked = True
|
2023-03-31 22:41:48 +00:00
|
|
|
states.her.wardrobe_unlocked = True
|
|
|
|
states.cho.wardrobe_unlocked = True
|
2022-05-16 23:48:22 +00:00
|
|
|
astoria_wardrobe_unlocked = True
|
|
|
|
susan_wardrobe_unlocked = True
|
|
|
|
luna_wardrobe_unlocked = True
|
2023-03-31 22:41:48 +00:00
|
|
|
states.her.level = states.cho.level = lun_whoring = states.ast.level = sus_whoring = 24
|
2022-05-16 23:48:22 +00:00
|
|
|
sna_friendship = 100
|
|
|
|
ton_friendship = 100
|
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
states.her.ev.yule_ball.e1_complete = True
|
|
|
|
states.her.ev.yule_ball.e2_complete = True
|
|
|
|
states.her.ev.yule_ball.e3_complete = True
|
|
|
|
states.her.ev.yule_ball.e4_complete = True
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
mirror_intro_done = True
|
2023-03-31 22:41:48 +00:00
|
|
|
states.map.seventh_floor.unlocked = True
|
|
|
|
states.map.seventh_floor.visited = True
|
2022-05-16 23:48:22 +00:00
|
|
|
seventh_door_OBJ.hidden = False
|
|
|
|
|
|
|
|
snape_office_discovered = True
|
|
|
|
|
|
|
|
snape_station_examined = True
|
|
|
|
snape_shelves_examined = True
|
|
|
|
snape_picture_examined = True
|
|
|
|
snape_statue_examined = True
|
|
|
|
snape_desk_examined = True
|
|
|
|
snape_candelabra_examined = True
|
|
|
|
|
|
|
|
snape_office_intro_E0 = True
|
|
|
|
snape_office_intro_E1 = True
|
|
|
|
snape_office_intro_E1_stage = 2
|
|
|
|
snape_office_intro_E2 = True
|
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
states.cho.ev.intro.e1_complete = True
|
|
|
|
states.cho.ev.intro.e2_complete = True
|
|
|
|
states.cho.ev.intro.e4_complete = True
|
2022-05-16 23:48:22 +00:00
|
|
|
ss_he.cho_E1 = True
|
|
|
|
|
|
|
|
for i in mirror.items:
|
|
|
|
i.unlocked = True
|
|
|
|
|
|
|
|
for i in inventory.items:
|
|
|
|
i.owned = i.limit
|
|
|
|
|
|
|
|
for i in CHARACTERS:
|
|
|
|
for x in getattr(renpy.store, i).outfits:
|
|
|
|
if not x.hidden:
|
|
|
|
x.unlock()
|
|
|
|
|
2023-03-02 23:06:16 +00:00
|
|
|
renpy.block_rollback()
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-03-02 23:06:16 +00:00
|
|
|
jump skip_to_hermione
|