
kamaroman68
USA
Asked
— Edited

Can someone look at this script and tell me what is missing? Ive tried several elseif, endif, combinations and can not make work? Thanks
:MonitorDistances $leftsensor = getadc(adc5) $topsensor = getadc(adc7) $rightsensor = getadc(adc6)
if ($leftsensor 60) ControlCommand("Script Manager ", ScriptStop, "forward_3_Seconds") ElseIf goto(MonitorDistances)
one other piece of advice.
if you put this into the script, notice that there is a + sign next to the if statement. there is a line down to the end if there is a little line going right to the end if.
This lets you know which endif is going with which if. This will let you see that this is a complete block. if the line just keeps going, it isnt a complete block of code.
This will let you know that the endif is where you expect it to be.