How do I make one bit of dialogue go to another bit of dialogue which was a previous option without doing the whole bit of dialogue again?
SterbenWarStorm
23 Jan 2020, 21:07I am making dialogue which the player chooses from some options that they are given, and I'm trying to make a bit where they can ask an npc some questions OR just say one thing and end the conversation with one option, but I don't want to recreate every single option after every single option. how would i make it ask the questions over and over?
mrangel
23 Jan 2020, 23:50You could put it into a script or a function.
If you put a piece of script in a function, then you can do those actions wherever you want by calling the function.
SterbenWarStorm
24 Jan 2020, 02:52Oh okay, thank you so much!