Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. T

    Why isn't computercraft script working?

    sorry. it was a matter of timing, as the 0.25 second delay wasn't enough for the turtle to detect that the falling sand or gravel turned from an entity to a block (i think) that still wouldn't explain why it ran off, but it works with a 0.5 sec sleep.
  2. T

    Why isn't computercraft script working?

    thanks! Damn you guys are fast! ;D lol j = 0 function dropping() turtle.select(1) turtle.dropUp() turtle.select(2) turtle.dropUp() turtle.select(3) turtle.dropUp() turtle.select(4) turtle.dropUp() turtle.select(5) turtle.dropUp() turtle.select(6) turtle.dropUp() turtle.select(7)...
  3. T

    Why isn't computercraft script working?

    i get " bios:338: [string "mining"]:82: 'then' expected although at line 82 there clearly is a 'then' function dropping() turtle.select(1) turtle.dropUp() turtle.select(2) turtle.dropUp() turtle.select(3) turtle.dropUp() turtle.select(4) turtle.dropUp() turtle.select(5)...
  4. T

    Computercraft Commands with variables! RESOLVED

    so I'm trying to create a quarry program for the mining turtle. my problem is that how could i make a function run a number of times, that would be determined by a variable. I thought it would go like: a = 69 function(a) but it didn't work. also tried function(..a..) function("a") and...