if、else、else if、end Lua 質問する

if、else、else if、end Lua 質問する

Lua でこれがなぜ間違っているのか分かりますか?

       if Pieza == 1 then
            if Rotacion == 1 then
                Piezas = Cuadrado1
            else if Rotacion == 2 then
                Piezas = Cuadrado2
            else if Rotacion == 3 then --this is Line 273
                Piezas = Cuadrado3
            else if Rotacion == 4 then
                Piezas = Cuadrado4
            else
                io.write("Me Envio una rotacion que no existe? \n");
            end 
--this end closes the if inside the first if the one using to compare Rotacion
        else if Pieza == 2 then
            if Rotacion == 1 then
                Piezas = I1
            else if Rotacion == 2 then
                Piezas = I2
            else if Rotacion == 3 then
                Piezas = I3
            else if Rotacion == 4 then
                Piezas = I4
            else
                io.write("Me Envio una rotacion que no existe? \n");
            end
--this end closes the if inside the first if the one using to compare Rotacion
        else  --this else is in case Pieza != 1 || 2
            io.write("Me Envio una pieza que no existe? \n");
        end --this close the whole if (the one comparing "Pieza")

私が受け取っているエラーは、この「end」が「else」の近くに(273行目で「if」を閉じるために)期待されているということです。

また、各 if の後に end を追加する (これは実行すべきことではありませんが、とにかく試してみました) は機能しません...

英語への翻訳が必要な場合は、喜んで解説などを行いますが、この質問には必要ないと思いました。

ベストアンサー1

それは でありelseifelse if(スペースに注意してください) ではありません。このエラーは、インタープリタがendelseブロックに を期待しているために発生します。

見るマニュアル詳細については。

おすすめ記事