h
This commit is contained in:
parent
1ff3cea4d6
commit
5422d52065
21 changed files with 21953 additions and 369 deletions
12
computer/1/rebuildschematic.lua
Normal file
12
computer/1/rebuildschematic.lua
Normal file
|
@ -0,0 +1,12 @@
|
|||
fs.delete("tobuild")
|
||||
file = fs.open("tobuild","w")
|
||||
for i = -80,80,8 do
|
||||
for j = -150,150,8 do
|
||||
for k = -150,150,8 do
|
||||
if i > -48 or ((i == -48) and j >= 66) then
|
||||
file.writeLine(j..","..i..","..k)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
file.close()
|
|
@ -24,5 +24,4 @@ while true do
|
|||
end
|
||||
--file = fs.open(filename,"r")
|
||||
--print(file.readAll())
|
||||
end
|
||||
|
||||
end
|
||||
|
|
21756
computer/1/tobuild
21756
computer/1/tobuild
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue