【发布时间】:2015-08-03 01:51:44
【问题描述】:
我最近一直在做一个项目,以制造一台可以防止飞机相互降落的机场计算机。出于某种原因,每次我运行我的程序时,它都会给我一条错误消息。我有另一个程序也收到错误消息,它将所有传入的消息打印到监视器上。这是我的代码:
程序 1 的错误消息(此消息仅在收到消息后出现:
[startup:9: 尝试比较 __le on nil 和 number]
程序 2 的错误消息:
[monitor:2:attempt to call nil]
第一个程序:
shell.openTab("monitor")
local Landing_open = true
rednet.open("top")
while true do
local id, message, distance = rednet.receive()
if message == "Requesting Landing" and distance <= 500 and Landing_open == true 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
elseif message == "Airports" then
rednet.send(id, "Melee Airport")
end
end
下一个节目:
local monitor = peripheral.wrap("left")
monitor.setCursorPos(1,1)
while true do
local x, y = monitor.getCursorPos()
if y > 10 then
monitor.clear()
monitor.setCursorPos(1,1)
end
id, message,distance = rednet.receive()
monitor.write(id)
monitor.write(message)
monitor.write(distance)
end
【问题讨论】:
-
在打开此问题前几天,您已在此处 (stackoverflow.com/q/31691023/4273199) 询问过有关完全相同的程序的问题。
标签: lua computercraft