Computercraft thingies
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

craft.lua 123B

12345678910
  1. local args = {...}
  2. local count
  3. if args[1] == nil then
  4. count = 1
  5. else
  6. count = tonumber(args[1])
  7. end
  8. turtle.craft(count)