Skip to content
This repository has been archived by the owner on Oct 10, 2022. It is now read-only.

Commit

Permalink
renaming to ugo
Browse files Browse the repository at this point in the history
  • Loading branch information
staubichsauger committed Aug 15, 2019
1 parent e402145 commit eed727e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
14 changes: 2 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Jabberwoky - A Uno Bot
Jabberwoky is a bot which can play the Uno card game. It was developed as part of [DumbergerL's Uno Bot Challenge](https://github.com/DumbergerL/uno-server).
# Jabberwoky - A Ugo Bot
Jabberwoky was developed as part of [DumbergerL's Bot Challenge](https://github.com/DumbergerL/uno-server).

It is written in pure Go and only uses Go's standard library.

Expand All @@ -19,13 +19,3 @@ and then execute resulting binary or just run
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`.


## Uno-Bot Challenge
The Uno Bot Challenge is a small competition, where one has to develop a Uno playing bot within two hours. In the end the bots compete against each other.

**bots that participated**

* This one of course ;-)
* [dumbergerl](https://github.com/DumbergerL/uno-bot) (Language: JavaScript / Node.js)
* revilo196 (Language: Go)
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
)

func main() {
host := flag.String("host", "localhost", "uno server host")
port := flag.Int("port", 3000, "uno server port")
host := flag.String("host", "localhost", "ugo server host")
port := flag.Int("port", 3000, "ugo server port")
numPlayers := flag.Int("players", 2, "number of clients to spawn")
flag.Parse()

Expand Down

0 comments on commit eed727e

Please sign in to comment.