Come up with this creative way, well creative to me, to layout command blocks.
I'm running linux screens to run the minecraft server and I basically have scripts which send /setblock commands to the server console to create structures while the game is running. (save's having to shut down the server each time)
The problem/confirmation I need is on the character limit. If I post a command over 4096 it seems to truncate the command and say it's invalid. Is the 4096 limit on the minecraft server console or on Linux screens? (linux screens documentation doesn't say)
If the limit is on minecraft, any way to make it 32k like the command block?
I actually wrote a function specifically for this. The limit is how much you can send to the screen each time. Add this function and use sendRaw "command".
Come up with this creative way, well creative to me, to layout command blocks.
I'm running linux screens to run the minecraft server and I basically have scripts which send /setblock commands to the server console to create structures while the game is running. (save's having to shut down the server each time)
The problem/confirmation I need is on the character limit. If I post a command over 4096 it seems to truncate the command and say it's invalid. Is the 4096 limit on the minecraft server console or on Linux screens? (linux screens documentation doesn't say)
If the limit is on minecraft, any way to make it 32k like the command block?
I actually wrote a function specifically for this. The limit is how much you can send to the screen each time. Add this function and use sendRaw "command".
Edit: Posted this earlier from work on my phone copy/paste from nano in ssh, so I went ahead and fixed the newlines and blank spaces.