2024-07-12 15:27:06 -06:00
|
|
|
# no-more-render
|
2024-07-11 08:34:04 -06:00
|
|
|
|
2024-07-12 15:27:06 -06:00
|
|
|
A Fabric mod that removes Minecraft's window rendering code, to create a headless CLI version
|
2024-07-22 14:52:25 -06:00
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
This mod runs a tcp server locally that allows for a command line interface
|
|
|
|
|
The mod runs on the port 65000, and increments this value by 1 if it cannot access that port.
|
|
|
|
|
You can connect to it via running `ncat localhost 65000` or other similar command
|
|
|
|
|
### Comamnds:
|
|
|
|
|
```
|
|
|
|
|
listelements/elems - List widgets on the screen
|
|
|
|
|
clickelement/celem <elem index> - Click an element on the screen
|
|
|
|
|
writeelement/welem <elem index> <text> - Write text into a compatable element
|
|
|
|
|
|
|
|
|
|
key <key> - Press and release a key
|
|
|
|
|
keydown <key> - Press a key
|
|
|
|
|
keyup <key> - Release a key
|
|
|
|
|
|
|
|
|
|
connect <Addr>:[Port] - Forcibly connect to a server
|
2024-07-25 15:39:00 -06:00
|
|
|
chat <message> - Send chat message (Can run meteor and baritone chat commands)
|
|
|
|
|
cmd <command> - Send command (Don't include first "/")
|
2024-07-22 14:52:25 -06:00
|
|
|
|
|
|
|
|
quit/exit - Close the game
|
|
|
|
|
```
|