Ok, I’ve made a final decision, and should I not continue with it, and follow through on it, you all have my permission to scold me harshly. I have decided on a story I at first planned never to do, because its plot would be predictable, and I am not skilled enough to make the events to seem natural. Now I have decided to play upon that, and mold random events into the story using scripting. To do this I will need to know how to script, and as questions come up I will post them here. I have read the basics of scripting by alexp, he did a very good job on it, and I am not certain of what the term ELSE means in scripting. There are more questions to come I assure you.
IF %FLASHLITE = 1 THEN %FLASHLITE := 0 ELSE %FLASHLITE = 1
This is the example alexp used, now the if then statement means that if the variable flashlight does not equal 1, then make it equal 1. while if it already equal to 1, as else statement says, make it equal to zero. Meaning that ELSE means that should the if than statement isn’t relevant, do this?