cp -r config/* Server/
git clone https://github.com/prism-river/killy-plugin Killy
cp -r Killy Server/Plugins/
make
./build/killyd -config=example.toml
cd ./Server
./Cuberite
// TCPMessage defines what a message that can be
// sent or received to/from LUA scripts
type TCPMessage struct {
Cmd string `json:"cmd,omitempty"`
Args []string `json:"args,omitempty"`
// Id is used to associate requests & responses
ID int `json:"id,omitempty"`
Data interface{} `json:"data,omitempty"`
}
cmd == 'monitor'
cmd == 'event' and args == ['table']
Feel free to hack on killy! CONTRIBUTING.md will help you to get involved into the development of killy.
- Thanks github.com/docker/dockercraft for its awesome idea.