Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi, thanks for an awesome gallery!  I have the replay gallery showing with the lock screens, however I am unable to unlock them so far.  In my script I have this: 

    menu:

        "Should I help Foxy out?"

        "Submit DNA evidence!":

            $ foxy_love += 1            

            $ xxx_files += 1

            jump dna_yes

        "Are you sure this is a good idea?":

            jump dna_no

    label dna_yes:

Here is what I have in the replay setup:

Replay_items.append(ReplayItem("Rthumb1", "dna_yes", "Foxy roof scene."))


and for the thumbnail I have:

image Rthumb1 = ("images/replay/ch1foxyroof22.webp")


Am I missing something? I've replayed my scene several times and saved afterwards and it's still showing up as locked.

here -->>  ", "Foxy roof scene."))  <<-- where you have Foxy roof scene. should be a label

it does NOT have to be a label that you jump to in the game it can sit there and just be used for the replay i.e.

label foxy_roof_replay_scene:   #** put this where you need it 

    menu:

        "Should I help Foxy out?"

        "Submit DNA evidence!":

            $ foxy_love += 1


and in the replay setup

Replay_items.append(ReplayItem("Rthumb1", "dna_yes", "foxy_roof_replay_scene."))

Thanks, but it's still not working.  Maybe there's something else I missed.   

did you play through the scene the replay gallery unlock relies on you playing the label

Yeah, I already did that.  I think I'm still not knowing what to do with either the new label in the script, or maybe I'm still not getting the replay_setup stuff right.  Nothing I've done has broken my playthrough yet but the gallery is still locked.  

you're gonna have to show me some code around the label and the replay_setup entry