Computercraft thingies
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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)