Menu Not Accepting Input
Fyrdraca
12 Oct 2017, 16:52I stepped away from Quest for a couple of months, and now none of my menus are working. I thought maybe an update was to blame, so I updated and followed the tutorial for making and showing a menu - like a great big beginner. And wound up with the same problem.
It shows the menu just fine, but I can't click any of the menu links/options, nor will the console accept any text input. Click, nothing. Press enter, nothing. Why is this?
I'm at a standstill until I can solve this problem. Is there any further information I need to provide to help you to help me? I'd really appreciate it. :)

Anonynn
13 Oct 2017, 01:53I'm not sure which menu you are using. But they should be something like this...
ShowMenu ("", game.restmenu, true) {
switch (result) {
case ("Build A Fire") {
}
}
}
or
menulist = Split("text;text", ";")
ShowMenu ("Question Here.", menulist, true) {
if (result = "") {
}
}
or...
switch (attribute/variablehere) {
case ("choice1") {
}
case ("choice2") {
}
case ("choice3") {
}
case ("choice4") {
}
}
Do any of these resemble the one you're using?
Anonynn.