Posted 08 November 2012 - 05:42 PM
Very simple way to type where the turtle go.
iamFrenchBe …. :P/>/> sorry for my english.
just type :
movIt(5,TR)
——> it turn right 5 time
TR = turnRight
TL = turnLeft
BK = go back
FW = go forward
and iam not a programmer so if you want help go for it
iamFrenchBe …. :P/>/> sorry for my english.
just type :
movIt(5,TR)
——> it turn right 5 time
TR = turnRight
TL = turnLeft
BK = go back
FW = go forward
function BK()
turtle.back()
end
function FW()
turtle.forward()
end
function TL()
turtle.turnLeft()
end
function TR()
turtle.turnRight()
end
function movIt(num ,direc)
local fn01 = direc
for i = 0 , num do
fn01()
end
end
and iam not a programmer so if you want help go for it