私はコンピュータ、モニタ、モデムなどを追加するMinecraftのModであるComputerCraftを使用しています。これはLuaスクリプトを使ってプログラムすることができます。基本的なLUAの問題
http://www.computercraft.info/wiki/Main_Page
私のスクリプトを実行している間、私はこのエラーを取得する: "BIOS:171:悪い引数:文字列が期待されるが、皆無だし"。
私のコードは30行を超えていませんが、それは行171と言われているので、私は理解しません。誰かが説明できますか?
monitor = peripheral.wrap("right")
monitor.clear()
monitor.setCursorPos(1, 1)
monitor.setTextScale(1)
monitor.write("Current mode:")
monitor.setCursorPos(1, 3)
monitor.write("furnace")
redstone.setOutput("back", false)
print("blablabla")
write()
if input == ja then
print("k")
redstone.setOutput("back", true)
monitor.clear()
monitor.setCursorPos(1, 1)
monitor.write("blabla")
else
print("u sux")
end
ヘルプが高く評価されます。
私はわかりません、何が '周辺機器'なのですか? –
はい、周辺機器を知らずに推測するのはほとんど不可能ですが、 'write()'と同じようにこのコマンドを見てください。 – macroland
@JacekCz http: /computercraft.info/wiki/Peripheral_(API) – Ynk