Put it in saves/<worldname>/computer/<ID of the turtle>/
Then everything should work fine
Posted 25 February 2012 - 12:46 PM
Posted 25 February 2012 - 01:05 PM
while true do
event, par1 = os.pullEvent()
if event == "peripheral" and par1 == "back"
then
peripheral.call("back", "turnOn")
end
end
file = io.open("program you want to install name here", "w")
file:write([[
<Code here>
]])
file:close()
Posted 25 February 2012 - 03:07 PM
Posted 25 February 2012 - 03:46 PM
Posted 27 February 2012 - 05:44 PM
Posted 27 February 2012 - 07:29 PM
file = io.open("waypoints.txt", "w")
file:write(first set of coords)
file:close()
shell.run("followwaypoints")
shell.run("dropall")
file = io.open("waypoints.txt", "w")
file:write(second set of coords)
file:close()
shell.run("followwaypoints")
Posted 28 February 2012 - 02:56 PM
Cookiebal, on 27 February 2012 - 07:29 PM, said:
file = io.open("waypoints.txt", "w")
file:write(first set of coords)
file:close()
shell.run("followwaypoints")
shell.run("dropall")
file = io.open("waypoints.txt", "w")
file:write(second set of coords)
file:close()
shell.run("followwaypoints")
function go_waypoints(txt,coord)
file = io.open(txt, "w")
file:write(coord)
file:close()
shell.run("followwaypoints")
Posted 28 February 2012 - 03:31 PM
Posted 28 February 2012 - 04:41 PM
Posted 28 February 2012 - 05:10 PM
Posted 28 February 2012 - 05:33 PM
Posted 28 February 2012 - 06:03 PM
Posted 28 February 2012 - 06:38 PM
Posted 28 February 2012 - 06:40 PM
Posted 28 February 2012 - 07:14 PM
Posted 28 February 2012 - 07:18 PM
Posted 28 February 2012 - 07:28 PM
Posted 28 February 2012 - 07:32 PM
0 members, 1 guests, 0 anonymous users