function f turtle.forward() --this is line 65 Btw end f f f
Error:
bios: 328 : [string "sort" ]:65: '(' expected
Edit: My rank realy fits with this question.
Posted 21 October 2012 - 07:05 AM
function f turtle.forward() --this is line 65 Btw end f f f
Posted 21 October 2012 - 07:07 AM
function funcName() --Code to do end funcName()
Posted 21 October 2012 - 07:07 AM
function f() turtle.forward() end f() f() f()
Posted 21 October 2012 - 07:08 AM
Tjakka5, on 21 October 2012 - 07:05 AM, said:
function f turtle.forward() --this is line 65 Btw end f f f
function f(distance_var) turtle.forward(distance_var) end f(2) -- 2 blocks f(6) -- 6 blocks
Posted 21 October 2012 - 07:10 AM
Posted 21 October 2012 - 07:20 AM
Posted 21 October 2012 - 07:25 AM
Posted 21 October 2012 - 07:34 AM
Posted 21 October 2012 - 11:00 AM
Posted 21 October 2012 - 11:03 AM
function f(distance_var)
for i = 1,distance_var do
turtle.forward()
end
end
f(2) -- 2 blocks
f(6) -- 6 blocks
0 members, 1 guests, 0 anonymous users