I'm in need of help. My design of script isn't giving what I want. Let me start by telling you what I want. Simply put, I want the user to undergo levels of IF within IF, within IFs... ---> so on. These also need to be user inputs, back in C++, it is simply the command "cin < input_integer/string/etc" which acts as user-input, the small piece of puzzle I'm looking for:
//introduce all parameters such as
string userinput1;
string userinput2;
etc...
//llListen function to listen for user input
//First user input
if(userinput1 == "user_input_level1"

llSay (You've entered level 1)
//Now, provided that the user has entered level 1, he/she can enter level 2 function
//second input
if (userinput2 == "user_input_level2"

llSay(You've entered level 2)
And the situation continues
So, basically, what I'm confused about is making a NESTED-IF statements, SL allowed me to through user first input, but beyond that, I can't figure out how to allow further inputs to be affected (based on "provided user has inserted first level"

Yes, I've made a situation where it's all IF functions, unfortunately that's not what I want, the user HAS to input the first command before getting allowance to second level of IF function.
I'm afraid I've lost you back then.. please let me know if this post is confusing, I'm sorry but I'm trying to make it understandable! Thank you very much in advance for your help!