Thanks for playing! The idea was you have to make your way up the top of the mountain to retrieve Luka before she gets lost in the old lab/bunker. I was gonna make cutscenes and stuff that would better explain everything, but ran out of time. I'll see if I can figure out how to skip dialogue, that was a pain for me too.
Viewing post in Guardian Witch jam comments
It seems like you used godot? If you use dialogic too, you can add a variable (i.e. "dialog2completed" or something) and set it at the end of the dialogue and also add an label there. Then you can either check at the begin of the dialogue if the variable is set, if not you can jump to the label you created at the end or check it in code before you call Dialogic.start("...").
As an alternative without dialogic you can use an autoload-class where you create a variable and check this before you start the dialogue, this way it won't get overwritten when you reload the current scene, because it is saved outside of it. There are probably more ways to do it, you'll figure something out ;)