Axe Software Forums
  Quest Developer Forum
  Menus


Author Topic:   Menus
DarkAng3l posted 10-11-2001 22:00 GMT     
How can I use a menu in Quest 2.X? If you want to help me mail me at [email protected]
DarkAng3l posted 10-11-2001 23:02 GMT          
I mean showing a menu, from which you choose an action. example: Talk to Beast
(shows a menu with 3 options:)
1)Please, don't eat me!!!
2)Beast eats human. Isn't it a cliche?
3)AAAAAARRRRRRRRRGGGGGGGGGG!!!!!!!!!1
Tyrant posted 11-11-2001 12:02 GMT          
First off, I recommend upgrading to Quest 3.03. Second, read the included documents and your question should be answered in there. Though if you're lazy like me, I'm sure you'll want an answer here. Keep in mind that these answers come from v3.03, so it may be different in 2.X.

define object <beast>
alias <beast>
speak choose <beastmenu>
end define

define selection <beastmenu>
info <Talk to the beast.>
choice <Please, don't eat me!!!> msg <whatever action here>
choice <Beast eats human. Isn't it a cliche?> msg <whatever action here>
choice <AAAAAARRRRRRRRRGGGGGGGGGG!!!!!!!!!!> msg <whatever action here>
end define