How to goto next line?

Using Naninovel C# APIs: adding custom actor implementations or commands, overriding engine services, integrating with other systems, etc.
Post Reply
SgKSFsSCBI9XpfJ
Posts: 6
Joined: 20 May 2022 10:34

How to goto next line?

Post by SgKSFsSCBI9XpfJ »

I customized a command to display a UI which using Stop(). After the player clicks, I want to continue to run the next line from the line where the Naninovelscript stops. What function should I use?

idaot
support
Posts: 262
Joined: 01 Aug 2020 08:25

Re: How to goto next line?

Post by idaot »

There is no built-in way to jump to a non-labelled point with goto. Check the VariableInputUI script for reference on how to resume playback from the next line, however with @input you are meant to use @stop in naniscript instead of Stop() which allows for better control via naniscript.

Post Reply