Computercraft thingies
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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)