init
This commit is contained in:
commit
12ffbdc45d
76 changed files with 79368 additions and 0 deletions
9
computer/3/schematicbuilder.lua
Normal file
9
computer/3/schematicbuilder.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
file = fs.open("tobuild","w")
|
||||
for i = -80,80,8 do
|
||||
for j = -150,150,8 do
|
||||
for k = -150,150,8 do
|
||||
file.writeLine(j..","..i..","..k)
|
||||
end
|
||||
end
|
||||
end
|
||||
file.close()
|
Loading…
Add table
Add a link
Reference in a new issue