if (some condition) --suppose this gets true
    ....
    ....
elseif (some condition)--this also gets false
    ...
    ...
else 
    ... --this else condition becomes false
    ...
    if (some condition)
        ..
    else
        ..
    endif-- stops execution when it gets here,doesnt moves on to next endif
endif
今私がやりたいのは、else部分をスキップすることです。endif キーワードを取得するまでスキップします。しかし、else 部分で最初の endif を取得すると、実行が停止します。その endif をスキップして、if の正確な endif と一致するようにする方法。それは本当に混乱しています助けてください...