A Basic, Basic Question.

makarr
27 Mar 2019, 23:07I'm... really tired.
And this is about the most basic question, but here goes!
The player can speak to a character. I want said character to say something, and invite the player to sit with him. I currently have in the verbs menu to run a script, starting with printing a message.
How would I then present the options of 'accept' and 'decline', with one answer returning the player to the room description page, and the other clearing the page and triggering the next scene?
Edit: This is in Quest, Windows version.

Anonynn
27 Mar 2019, 23:15menulist = Split("Choice 1;Choice 2", ";")
ShowMenu ("Question Here.", menulist, true) {
if (result = "Choice 1") {
msg ("")
}
else if (result = "Choice 2") {
msg ("")
}
}
Let me know if this helps you!

makarr
28 Mar 2019, 13:07Thank you so much! Exactly what I needed!~

makarr
28 Mar 2019, 13:14@Anonynn One more thing: How do I present a 'Continue' button? I want just one verb in a room, that, once clicked, moves player to another room.

DarkLizerd
28 Mar 2019, 16:43WaitForKeyPress…
wait {
MoveObject (player, C02)
}
Providing you are moving the player to room C02 that is...

makarr
28 Mar 2019, 17:29That doesn't seem to be working...

DarkLizerd
28 Mar 2019, 18:38Where are you placing the code???
I used it in "After entering room".
That way, you see the room description, then have "continue" printed.
(Are we talking about TE or GB???)

makarr
28 Mar 2019, 18:43TE. Let me try that...
EDIT: I think I got it! Thank you!

DarkLizerd
29 Mar 2019, 02:18👍

Anonynn
29 Mar 2019, 22:08Glad you got it figured out :D
Anonynn.