Jump to content




Temporary bridge maker :D!


8 replies to this topic

#1 TheDeathOfRandom

  • New Members
  • 18 posts

Posted 29 March 2012 - 03:46 AM

This is a brand new program that I made for a member on my server to install into his TurtleOS thing... I thought it was pretty neat so I would like to share with the rest of the ComputerCraft Communty.

Spoiler

If there are any errors let me know... This is actually quite simple so you should be able to make it awesome :o/> just felt like throwin the idea out there.

#2 hamish1001

  • New Members
  • 75 posts
  • LocationAustralia

Posted 29 March 2012 - 03:52 AM

cool your server still online?

#3 hamish1001

  • New Members
  • 75 posts
  • LocationAustralia

Posted 29 March 2012 - 04:23 AM

doesnt work mate i don't see whats wrong with it....

#4 ComputerCraftFan11

  • Members
  • 771 posts
  • LocationHawaii

Posted 29 March 2012 - 04:54 AM

View PostTheDeathOfRandom, on 29 March 2012 - 03:46 AM, said:

This is a brand new program that I made for a member on my server to install into his TurtleOS thing... I thought it was pretty neat so I would like to share with the rest of the ComputerCraft Communty.

Spoiler

If there are any errors let me know... This is actually quite simple so you should be able to make it awesome :o/> just felt like throwin the idea out there.


Cool program
--xXm0dzXx

#5 Ian-Moone

    The Germ

  • New Members
  • 124 posts
  • LocationLiverpool (no I am not a Scouser Im form Holland)

Posted 29 March 2012 - 07:05 AM

hamish did you put blocks in it?

#6 TheDeathOfRandom

  • New Members
  • 18 posts

Posted 30 March 2012 - 02:27 AM

the script works you just need blocks in the turtle... if you make sure you copied it right it sho

View Posthamish1001, on 29 March 2012 - 04:23 AM, said:

doesnt work mate i don't see whats wrong with it....

Make sure that you have copied the code correctly. I don't know about you but sometimes the copy paste doesn't always work right from forums for me. If you don't find the error please post the error code/line thing and I'll see whats up. :o/>

#7 EmTeaKay

  • Members
  • 115 posts

Posted 10 April 2012 - 11:50 PM

You need to put periods in between term and clear() like term.clear() .

#8 cant_delete_account

  • Members
  • 484 posts

Posted 11 April 2012 - 12:09 AM

View PostEmTeaKay, on 10 April 2012 - 11:50 PM, said:

You need to put periods in between term and clear() like term.clear() .
Nope, he has a function called termClear()

#9 bonobot

  • New Members
  • 14 posts

Posted 17 April 2012 - 06:21 PM

Right-off the bat I noticed countItems should look more like:

function countItems()
local nItem = { turtle.getItemCount(1) }
for i=2,9 do
  nItem = table.insert( nItem, turtle.getItemCount(i) )
  end
return nItem
end

I'll try to revise more tonight, but here's another thing...

while !turtle.detectDown() do
turtle.placeDown()
turtle.forward()
end






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users