I ran into a logic issue where I need to do something like: if Switch bla AND switch ya are on then do this, else, do tthat. nesting the checks is.....not good.
So can I do a conditional statement that sais something like if $game_switch[7] == ON && $game_switch[6] == ON {} else {}. Your probably thinking, yes you can do that, through scripting - that's fine and all, but I would like to do it in the events conditional (I dont want to have to actually write a script that checks this if I can do it in the section of the coditional page where I can enter script calls), on the last page where you have the abillity to do script calls, would I simply do: $game_switches[6] && $game_switches[8] ??
Sorry, I cant tell if its switches or switch, haven't opened the script editor to check.