A Gallery Unlocker
Edit: Updated to v0.11.2
Through if you like what you see and want to see more then consider supporting them on Subscribe Star
You would have also saved yourself a lot of
Python:
if _in_replay:
$ name = persistent.pname
by using scope in replay.
Python:
Replay("hooker_gallery_bj", scope={"name":persistent.pname or "Jack"})
You must be registered to see the links
default persistent.pname = "Jack" was added to prevent a small bug for people using this without playing the game and the name getting set as "None".
For those that would prefer to enter a different name just start a new game and play up until the point when you can name the Main Character.
Alternatively this code would capture the current player's name after they loaded a save
Python:
# After Loading A Save File
label after_load:
# Capture name for gallery
$ persistent.pname = name
return
You must be registered to see the links