Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- goToPos Function. --
- -- By Ninetainedo -- NoFake Dev Team --
- -- Moves the turtle to xTmp, yTmp, zTmp considerating it is on 0, 0, 0. (Also turns the turtle to sideTmp considerating it is currently facing 0). --
- -- Example :
- --
- -- .....
- -- ...T.
- -- .....
- -- .D...
- --
- -- On this draw (Top view), the Turtle is the 'T', the destination is the 'D' and the turtle is facing on right (1)
- -- I have to do goToPos(-2, -2, 0, -1, "szyx")
- -- The last parameter represents the order the turtle has to move. In this case, it will move in this order : side, z, y, x
- --
- -- Axis are defined with turtle facing 0 :
- -- x is forward
- -- y is right
- -- z is up
- --
- function goToPos(xTmp, yTmp, zTmp, sideTmp, order)
- local xMove = function()
- while (xTmp ~= 0) do
- if (xTmp > 0) then
- while (not turtle.forward()) do
- turtle.dig()
- turtle.attack()
- os.sleep(0.4)
- end
- xTmp = xTmp - 1
- else
- if (not turtle.back()) then
- turtle.turnLeft()
- turtle.turnLeft()
- while (not turtle.forward()) do
- turtle.dig()
- turtle.attack()
- os.sleep(0.4)
- end
- turtle.turnRight()
- turtle.turnRight()
- end
- xTmp = xTmp + 1
- end
- end
- end
- local yMove = function()
- if (yTmp > 0) then
- turtle.turnRight()
- while (yTmp > 0) do
- while (not turtle.forward()) do
- turtle.dig()
- turtle.attack()
- os.sleep(0.4)
- end
- yTmp = yTmp - 1
- end
- turtle.turnLeft()
- elseif (yTmp < 0) then
- turtle.turnLeft()
- while (yTmp < 0) do
- while (not turtle.forward()) do
- turtle.dig()
- turtle.attack()
- os.sleep(0.4)
- end
- yTmp = yTmp + 1
- end
- turtle.turnRight()
- end
- end
- local zMove = function()
- while (zTmp ~= 0) do
- if (zTmp < 0) then
- while (not turtle.down()) do
- turtle.attackDown()
- turtle.digDown()
- os.sleep(0.4)
- end
- zTmp = zTmp + 1
- else
- while (not turtle.up()) do
- turtle.attackUp()
- turtle.digUp()
- os.sleep(0.4)
- end
- zTmp = zTmp - 1
- end
- end
- end
- local sMove = function()
- while (sideTmp ~= 0) do
- if (sideTmp > 0) then
- turtle.turnRight()
- sideTmp = sideTmp - 1
- else
- turtle.turnLeft()
- sideTmp = sideTmp + 1
- end
- end
- end
- for a = 1, 4 do
- if (order:sub(a, a) == 'x') then
- xMove()
- elseif (order:sub(a, a) == 'y') then
- yMove()
- elseif (order:sub(a, a) == 'z') then
- zMove()
- elseif (order:sub(a, a) == 's') then
- sMove()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement