-
Notifications
You must be signed in to change notification settings - Fork 0
Show_question
hpgDesigns edited this page Aug 8, 2021
·
1 revision
NOTOC {{-}}
Displays a dialog box with the given question, with a "yes" and a "no" button.
- str: The question to be displayed in the dialog box.
Returns true if the user selects "Yes", and false if the user selects "No".
if(show_question("Do you like ENIGMA?")) {
show_message("ENIGMA likes you too.");
} else {
show_message("ENIGMA hates you too.");
}This is number 1