This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Camper76's profile picture

Error with Quarry

Started by Camper76, 18 April 2015 - 12:51 AM
Camper76 #1
Posted 18 April 2015 - 02:51 AM
I'm playing a modpack in which I would like to create a frame quarry, I spent a while creating the actual code and build for the thing but I am getting a error that probably should not be happening.

local function Cycle1
  QuarryMove()
  sleep(3)
  Dig()
end

And the actual line that is giving me trouble is:

  QuarryMove()

When I actually try to run the program is says "bios:366: [string "quarry"]:55: '(' expected".
Someone please help me because I am testing this at the moment but I actually want to do this in survival, and I don't know much about coding.
flaghacker #2
Posted 18 April 2015 - 08:15 AM
You forgot the parentheses behind Cycle1.