Okay, first, to clear it up:
Is 'ShowMenu()' the menu we use now? Or should we be using 'show menu'?
The reason I ask is that if it's 'ShowMenu()', that creates a slight problem.
The ShowMenu() function apparently can't have an outside variable; for example:
blah = "blah"
ShowMenu ("Blah?", Split ("blah; blah blah", "; ") , false) {
if (result = blah) {
msg ("BLAH!")
}
else if (result = blah + " " + blah) {
msg ("Blah.")
}
}
This spits out an error in Quest when you choose from the menu:
Error running script: Error compiling expression 'blah': Unknown object or variable 'blah'
However, 'show menu' doesn't seem to have this problem at all.