-1

空港マップの管制塔で使用されるコンピュータ クラフトのプログラムで、次のようなメッセージが表示されました。

bios:367:[string "AirportCommand"]:15: 構文エラー

これが私のすべてのコードです。エラーが発生した場合は教えてください。

local Landing_open = true
rednet.open("top")

while true do

  id, message, distance = rednet.receive()

  if message == "Requesting Landing" and Landing_open == true and distance<500 then
    rednet.send(id, "Landing is granted. Please respond with Landing finished when you exit the runway.")
    Landing_open = false

   elseif message == "Requesting Landing" and distance>=500 then
     rednet,send(id, "Landing is not granted. Please try again when you are closer to the airport,")

   elseif message == "Requesting Landing" and Landing_open == false then
    rednet.send(id, "Landing is not granted. Please try again later.")

   elseif message == "Landing Finished" then
    rednet.send(id, "Roger that")
    Landing_open = true
4

1 に答える 1