我最近尝试使用此代码来检测 ftb 中的沙砾或暴徒之类的东西,但是当我将它与脚本的其余部分放在一起时,它会弄乱整个事情,我不明白为什么。
我试图添加到我的脚本中的代码:
local function moveForward()
while not turtle.forward() do
if turtle.detect() then
turtle.dig()
turtle.attack()
if turtle.detect() then
sleep(0.2)
end
end
end
end
请参阅具有此本地功能的脚本。
请参阅没有此功能的我的工作脚本。
任何帮助将不胜感激。