neural apps

This commit is contained in:
kepler155c@gmail.com
2019-02-12 18:10:01 -05:00
parent d98ba35a21
commit 68c1e8ccde
2 changed files with 29 additions and 2 deletions

View File

@@ -18,8 +18,9 @@ if device.neuralInterface and device.wireless_modem then
gpt.z = math.min(math.max(gpt.z, -15), 15)
return device.neuralInterface.walk(gpt.x, gpt.y, gpt.z)
else
local y, p = ni.yap(pt, { x = x, y = y + 2, z = z })
return ni.launch(y, p, 1)
local y, p = ni.yap(pt, { x = x, y = y + 3, z = z })
ni.look(y, 0)
return ni.launch(y, p, 1.5)
end
end)
end