diff --git a/examples/daze/daze.go b/examples/daze/daze.go index 8fef07b..f33b330 100644 --- a/examples/daze/daze.go +++ b/examples/daze/daze.go @@ -1,5 +1,11 @@ -// Daze could join an offline-mode server as client. -// Just standing there and do nothing. Automatically reborn after five seconds of death. +// Daze is a basic bot example that join a server as client with these features: +// - Say "Hello, world" when game started. +// - Just standing there and do nothing. +// - Receive chat message and print it. +// - Receive player list and store it in memory. +// - Receive chunk data and load/unload them. +// - Receive inventory items and print them. +// - Automatically reborn after 5 seconds of death. package main import ( diff --git a/examples/minimal/minimal.go b/examples/minimal/minimal.go index 2ab040f..1c2385c 100644 --- a/examples/minimal/minimal.go +++ b/examples/minimal/minimal.go @@ -1,5 +1,5 @@ -// Daze could join an offline-mode server as client. -// Just standing there and do nothing. Automatically reborn after five seconds of death. +// A minimal bot example that could join minecraft server as a client. +// For a complete bot example, see examples/daze. package main import (