Jabberwoky was developed as part of DumbergerL's Bot Challenge.
It is written in pure Go and only uses Go's standard library.
This commit shows the code as it was after the competition.
- Install and setup Go if you haven't yet. That's all folks.
Either run
go build main.go
and then execute resulting binary or just run
go run main.go
.
By default jabberwoky will connect to http://localhost:3000
and spawn two players, this can be changed with the -host
, -port
and -players
flags.
E.g. to connect to http://10.0.0.1:1234
with one player run go run main.go -host=10.0.0.1 -port=1234 -players=1
.