SetContinueMode(Original) doesn't do anything and leaves the continue mode on false.
The goal is to set the ContinueMode to false at the start of a conversation and then turn it back to NotBeforeResponseMenu at the end of that conversation.
I put
Code: Select all
SetContinueMode(false);
Delay(6)
I had thought that putting this on the final element of the conversation would do it but it doesn't seem to work.
Code: Select all
Delay(6);
SetContinueMode(NotBeforeResponseMenu)
I'm not sure if I'm making any sense and I get the feeling that I've missed some very significant and obvious thing that is preventing this from working.
other things I've tried:
Code: Select all
SetContinueMode(NotBeforeResponseMenu)@6;
SetContinueMode(ContinueButtonMode.NotBeforeResponseMenu);
SetContinueMode((ContinueButtonMode)(4));
SetContinueMode(PixelCrushers.DialogueSystem.DisplaySettings.SubtitleSettings.ContinueButtonMode.NotBeforeResponseMenu);