The Dink Network

Reply to Re: Choices menus within choice menus

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
July 18th 2018, 05:03 PM
duck.gif
toof
Peasant He/Him
I disagree. 
Ok, back to the original issue. I understand that this might pose a problem. I need a choice menu, within a choice menu. Like this =>
choice start();
"Option first"
"Option second"
choice end();
  if(&result == 1) {
    //random crap
  }
    if(&result == 2) {
      choice start();
      "Option first"
      "Option second"
      choice end();
      if(&result == 1) {
        //even more random crap
      }
      if(&result == 2) {
        //some action
      }
   }

I understand that it might create a conflict, since both menus use &result. So should I abandon this idea, or not?

Edit:
Don't pay attention to syntax or properly closed braces, just about the possibleness(?) of such script.