Actually have a semi working world loader.
This commit is contained in:
6
tools/map/index.js
Normal file
6
tools/map/index.js
Normal file
@ -0,0 +1,6 @@
|
||||
const fs = require('fs');
|
||||
|
||||
let buffer = "";
|
||||
for(let i = 0; i < (16*16*8); i++) buffer += "0;";
|
||||
|
||||
fs.writeFileSync('out.txt', buffer);
|
Reference in New Issue
Block a user