How do I make a continue hyperlink?(Solved)
Dongers
20 Nov 2021, 20:34I want to end a line of text with the player being moved to another room, however without a continue button it just skips the text and teleports the player to another room. Since I made it so removes text upon room transition the player will be unable to read anything. So I want to add the continue button, or hyperlink, that I often see in other games at the end of the text. Pressing it should continue to the room transition. How do I do that? I'm not good with code language and due to my ADHD I tend to have a hard time understanding complicated things, so if anyone can help me, please make it as easy to understand as possible. Make it understandable enough for a first-grader even if you want to.
mrangel
20 Nov 2021, 20:54The script command you want is wait
.
In code view it looks like this:
wait {
// code to move the player will go here
}
In the point-and-click code editor, I think it's called "Wait for key press"
Dongers
20 Nov 2021, 21:29Thank you! It worked!