This commit is contained in:
Crispy 2025-05-27 03:02:53 +02:00
parent 1ff3cea4d6
commit 5422d52065
21 changed files with 21953 additions and 369 deletions

View 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()