Ask
From QuestWiki
Note: This function is deprecated as of Quest 5.1. Use the ask script command instead.
Ask (string question)
Returns a boolean - true if the player answers "Yes" to the question.
Example:
if (Ask("Do you think the 'ask' function is great?")) {
msg ("Good.")
} else {
msg ("That's a pity.")
}