Reply to Re: Choices menus within choice menus
If you don't have an account, just leave the password field blank.
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 =>
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.
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.






