Skip to content

Instantly share code, notes, and snippets.

@matthewpalmer
Created October 21, 2014 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewpalmer/145c79e9bbf260850213 to your computer and use it in GitHub Desktop.
Save matthewpalmer/145c79e9bbf260850213 to your computer and use it in GitHub Desktop.
Checking your files...
Makefile
dracula.c
hunter.c
GameView.c
GameView.h
HunterView.c
HunterView.h
DracView.c
DracView.h
Makefile
DracView.c
GameView.c
HunterView.c
Map.c
Places.c
Set.c
dracula.c
hunter.c
player.c
Bool.h
DracView.h
Game.h
GameView.h
Globals.h
HunterView.h
Item.h
Map.h
Places.h
Set.h
dracula.h
hunter.h
localGlobals.h
Archive: /home/cs1927ass/14s2.dracula/supplied/hunt.zip
inflating: DracView.c
inflating: DracView.h
inflating: Game.h
inflating: GameView.c
inflating: GameView.h
inflating: Globals.h
inflating: HunterView.c
inflating: HunterView.h
inflating: Makefile
inflating: Map.c
inflating: Map.h
inflating: Places.c
inflating: Places.h
inflating: dracula.c
inflating: dracula.h
inflating: hunter.c
inflating: hunter.h
inflating: player.c
=== Modified Makefile
# Makefile for "Fury of Dracula": The Hunt
# change these to suit your local C environment
CC = gcc
CFLAGS = -Wall -Werror -gdwarf-2 -DDEBUG -std=c99
# do not change the following line
BINS = dracula hunter
# add any other *.o files that your system requires
# (and add their dependencies below after DracView.o)
# if you're not using Map.o or Places.o, you can remove them
OBJS = GameView.o Map.o Places.o Set.o
# add whatever system libraries you need here (e.g. -lm)
LIBS = -ljansson
all : $(BINS)
dracula : dracPlayer.o Map.o Places.o dracula.o DracView.o Set.o $(OBJS) $(LIBS) -ljansson
hunter : hunterPlayer.o Map.o Places.o hunter.o HunterView.o $(OBJS) $(LIBS) -ljansson
dracPlayer.o : player.c Game.h DracView.h dracula.h
$(CC) -DI_AM_DRACULA -c player.c -o dracPlayer.o
hunterPlayer.o : player.c Game.h HunterView.h hunter.h
$(CC) -c player.c -o hunterPlayer.o
dracula.o : dracula.c Game.h DracView.h
hunter.o : hunter.c Game.h HunterView.h
Places.o : Places.c Places.h
Map.o : Map.c Map.h Places.h
GameView.o : GameView.c Globals.h GameView.h
HunterView.o : HunterView.c Globals.h HunterView.h
DracView.o : DracView.c Globals.h DracView.h
# if you use other ADTs, add dependencies for them here
Set.o : Set.c Item.h Bool.h
clean :
rm -f $(BINS) *.o core
=== Compiling Dracula ...
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o dracula.o dracula.c
gcc -DI_AM_DRACULA -c player.c -o dracPlayer.o
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o Map.o Map.c
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o Places.o Places.c
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o DracView.o DracView.c
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o Set.o Set.c
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o GameView.o GameView.c
gcc dracula.o dracPlayer.o Map.o Places.o DracView.o Set.o GameView.o /usr/lib/libjansson.so -o dracula
Dracula AI compiled OK
=== Compiling Hunter ...
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o hunter.o hunter.c
gcc -c player.c -o hunterPlayer.o
gcc -Wall -Werror -gdwarf-2 -DDEBUG -std=c99 -c -o HunterView.o HunterView.c
gcc hunter.o hunterPlayer.o Map.o Places.o HunterView.o GameView.o Set.o /usr/lib/libjansson.so -o hunter
Hunter AI compiled OK
=== Playing your Hunter against your Dracula ...
The FURY of DRACULA
_..._
.' '.
; __ __ ;
|/ \ / \|
|\| -- ' -- |/|
|(| \o| |o/ |)|
_\| U |/_
.-' | ,.___., | '-.
\ ; V'-'V ; /
`\ \ / /`
`\ '-...-' /`
`\ / \ /`
`\\_//`
...........................
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "",
"messages": []
}
Program Output: GameView.c: init score ''
GameView.c: init score done
Game Score: 366Location code is CD (CD)
Move: {
"move": "CD",
"message": "CD",
"timer": 107
}
> Moving from: undefined
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 107
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD....",
"messages": [
"CD"
]
}
Program Output: GameView.c: init score 'GCD....'
GameView.c: init score done
Game Score: 366Location code is LS (LS)
Move: {
"move": "LS",
"message": "LS",
"timer": 106
}
> Moving from: undefined
> Life Points: 9
> Player 1 made move:
> +++
move: LS
message: LS
timer: 106
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS....",
"messages": [
"CD",
"LS"
]
}
Program Output: GameView.c: init score 'GCD.... SLS....'
GameView.c: init score done
Game Score: 366Location code is CA (CA)
Move: {
"move": "CA",
"message": "CA",
"timer": 103
}
> Moving from: undefined
> Life Points: 9
> Player 2 made move:
> +++
move: CA
message: CA
timer: 103
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA....",
"messages": [
"CD",
"LS",
"CA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA....'
GameView.c: init score done
Game Score: 366Location code is GR (GR)
Move: {
"move": "GR",
"message": "GR",
"timer": 102
}
> Moving from: undefined
> Life Points: 9
> Player 3 made move:
> +++
move: GR
message: GR
timer: 102
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun1757/dracula
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR....",
"messages": [
"CD",
"LS",
"CA",
"GR"
]
}
Program Output: past plays: 'GCD.... SLS.... HCA.... MGR....'
GameView.c: init score 'GCD.... SLS.... HCA.... MGR....'
GameView.c: init score done
Deciding dracula...
Move: {
"move": "AS",
"message": "AS",
"timer": 200
}
> Moving from: undefined
> Blood Points: 40
> Player 4 made move:
> +++
move: AS
message: AS
timer: 200
> ---
> End of Round: 0
> Starting Round: 1
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?....'
current 101 2
drac at sea
GameView.c: init score done
Game Score: 365Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 113
}
> Moving from: CD
> Life Points: 9
> Player 0 made move:
> +++
move: GA
message: GA
timer: 113
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA....'
current 101 2
drac at sea
GameView.c: init score done
Game Score: 365Location code is MA (Madrid)
running on track!
Move: {
"move": "SN",
"message": "SN",
"timer": 119
}
> Moving from: LS
> Life Points: 9
> Player 1 made move:
> +++
move: SN
message: SN
timer: 119
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN....'
current 101 2
drac at sea
GameView.c: init score done
Game Score: 365Location code is MA (Madrid)
running on track!
Move: {
"move": "MA",
"message": "MA",
"timer": 120
}
> Moving from: CA
> Life Points: 9
> Player 2 made move:
> +++
move: MA
message: MA
timer: 120
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA....'
current 101 2
drac at sea
GameView.c: init score done
Game Score: 365Location code is MA (Madrid)
running on track!
Move: {
"move": "AL",
"message": "AL",
"timer": 120
}
> Moving from: GR
> Life Points: 9
> Player 3 made move:
> +++
move: AL
message: AL
timer: 120
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun1757/dracula
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL"
]
}
Program Output: past plays: 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL....'
GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL....'
current 0 2
drac at sea
GameView.c: init score done
Deciding dracula...
got a move...
Most obvious move: VE
Finished registering obvious move
Showing all..
{0,67,32,6}Showing hunters...
{26,13,34,20,17,55,40,56,37,1,7,11,5,50,30,15,43}Showing difference...
Inserting 0
Inserting 67
Inserting 32
Inserting 6
{0,67,32,6}Scanning 0
Scanning 67
Got a move from cantGetTo 67
cantGetTo move: VE
Move: {
"move": "VE",
"message": "VE",
"timer": 180
}
> Moving from: AS
> Blood Points: 38
> Player 4 made move:
> +++
move: VE
message: VE
timer: 180
> ---
> End of Round: 1
> Starting Round: 2
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T...'
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: 364Location code is BC (Bucharest)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 118
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: KL
message: KL
timer: 118
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL....'
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: 364Location code is MA (Madrid)
running on track!
Move: {
"move": "SR",
"message": "SR",
"timer": 126
}
> Moving from: SN
> Life Points: 9
> Player 1 made move:
> +++
move: SR
message: SR
timer: 126
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR....'
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: 364Location code is SR (Saragossa)
running on track!
Move: {
"move": "SR",
"message": "SR",
"timer": 123
}
> Moving from: MA
> Life Points: 9
> Player 2 made move:
> +++
move: SR
message: SR
timer: 123
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR....'
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: 364Location code is MA (Madrid)
running on track!
Move: {
"move": "BA",
"message": "BA",
"timer": 119
}
> Moving from: AL
> Life Points: 9
> Player 3 made move:
> +++
move: BA
message: BA
timer: 119
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun1757/dracula
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA"
]
}
Program Output: past plays: 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA....'
GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA....'
current 0 2
drac at sea
current 67 1
GameView.c: init score done
Deciding dracula...
got a move...
Most obvious move: MU
Finished registering obvious move
Showing all..
{67,45,44,29,24,0}Showing hunters...
{34,62,26,17,14,13,8,56,40,11,5,55,37,1,50,42,35,12,63,43}Showing difference...
Inserting 67
Inserting 45
Inserting 44
Inserting 29
Inserting 24
Inserting 0
{67,45,44,29,24,0}Scanning 67
Scanning 45
Got a move from cantGetTo 45
cantGetTo move: MU
Move: {
"move": "MU",
"message": "MU",
"timer": 198
}
> Moving from: VE
> Blood Points: 38
> Player 4 made move:
> +++
move: MU
message: MU
timer: 198
> ---
> End of Round: 2
> Starting Round: 3
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T...'
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: 363Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 122
}
> Moving from: KL
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 122
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD....'
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: 363Location code is TO (Toulouse)
running on track!
Move: {
"move": "BO",
"message": "BO",
"timer": 127
}
> Moving from: SR
> Life Points: 9
> Player 1 made move:
> +++
move: BO
message: BO
timer: 127
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO....'
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: 363Location code is MA (Madrid)
running on track!
Move: {
"move": "TO",
"message": "TO",
"timer": 124
}
> Moving from: SR
> Life Points: 9
> Player 2 made move:
> +++
move: TO
message: TO
timer: 124
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO....'
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: 363Location code is SR (Saragossa)
running on track!
Move: {
"move": "TO",
"message": "TO",
"timer": 142
}
> Moving from: BA
> Life Points: 9
> Player 3 made move:
> +++
move: TO
message: TO
timer: 142
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun1757/dracula
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DMUT... GCD.... SBO.... HTO.... MTO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO"
]
}
Program Output: past plays: 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DMUT... GCD.... SBO.... HTO.... MTO....'
GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DMUT... GCD.... SBO.... HTO.... MTO....'
current 0 2
drac at sea
current 67 1
current 45 1
GameView.c: init score done
Deciding dracula...
got a move...
Most obvious move: ZU
Finished registering obvious move
Showing all..
{45,70,69,68,67,59,49,44}Showing hunters...
{17,34,26,11,63,56,46,18,7,42,5}Showing difference...
Inserting 45
Inserting 70
Inserting 69
Inserting 68
Inserting 67
Inserting 59
Inserting 49
Inserting 44
{45,70,69,68,67,59,49,44}Scanning 45
Scanning 70
Got a move from cantGetTo 70
cantGetTo move: ZU
Move: {
"move": "ZU",
"message": "ZU",
"timer": 199
}
> Moving from: MU
> Blood Points: 38
> Player 4 made move:
> +++
move: ZU
message: ZU
timer: 199
> ---
> End of Round: 3
> Starting Round: 4
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T...'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 362Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 128
}
> Moving from: CD
> Life Points: 9
> Player 0 made move:
> +++
move: GA
message: GA
timer: 128
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 362Location code is SR (Saragossa)
running on track!
Move: {
"move": "NA",
"message": "NA",
"timer": 127
}
> Moving from: BO
> Life Points: 9
> Player 1 made move:
> +++
move: NA
message: NA
timer: 127
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 362Location code is SR (Saragossa)
running on track!
Move: {
"move": "CF",
"message": "CF",
"timer": 129
}
> Moving from: TO
> Life Points: 9
> Player 2 made move:
> +++
move: CF
message: CF
timer: 129
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 362Location code is SR (Saragossa)
running on track!
Move: {
"move": "MR",
"message": "MR",
"timer": 131
}
> Moving from: TO
> Life Points: 9
> Player 3 made move:
> +++
move: MR
message: MR
timer: 131
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun1757/dracula
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DMUT... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR"
]
}
Program exited with code: null
Received signal: SIGSEGV
Program Output:
Move data corrupted: ""
[SyntaxError: Unexpected end of input]
Move: {}
undefined illegal
Move undefined
> Player 4 disqualified for illegal move.
> +++
> ---
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D2"
> End of Round: 4
> Starting Round: 5
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T...'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 361Location code is BC (Bucharest)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 163
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: KL
message: KL
timer: 163
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 361Location code is PA (Paris)
running on track!
Move: {
"move": "LE",
"message": "LE",
"timer": 138
}
> Moving from: NA
> Life Points: 9
> Player 1 made move:
> +++
move: LE
message: LE
timer: 138
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 361Location code is TO (Toulouse)
running on track!
Move: {
"move": "PA",
"message": "PA",
"timer": 138
}
> Moving from: CF
> Life Points: 9
> Player 2 made move:
> +++
move: PA
message: PA
timer: 138
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 361Location code is ZU (Zurich)
running on track!
Move: {
"move": "GO",
"message": "GO",
"timer": 134
}
> Moving from: MR
> Life Points: 9
> Player 3 made move:
> +++
move: GO
message: GO
timer: 134
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VE illegal
Location VE already in trail
ZU illegal
Location ZU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "NU"
> End of Round: 5
> Starting Round: 6
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T...'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 360Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 138
}
> Moving from: KL
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 138
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 360Location code is PA (Paris)
running on track!
Move: {
"move": "BU",
"message": "BU",
"timer": 142
}
> Moving from: LE
> Life Points: 9
> Player 1 made move:
> +++
move: BU
message: BU
timer: 142
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 360Location code is ST (Strasbourg)
running on track!
Move: {
"move": "GE",
"message": "GE",
"timer": 136
}
> Moving from: PA
> Life Points: 9
> Player 2 made move:
> +++
move: GE
message: GE
timer: 136
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DC?T... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE....'
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 360Location code is MI (Milan)
running on track!
Move: {
"move": "VE",
"message": "VE",
"timer": 136
}
> Moving from: GO
> Life Points: 9
> Player 3 made move:
> +++
move: VE
message: VE
timer: 136
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "FR"
> End of Round: 6
> Starting Round: 7
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T...'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 359Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 138
}
> Moving from: CD
> Life Points: 9
> Player 0 made move:
> +++
move: GA
message: GA
timer: 138
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA....'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 359Location code is ST (Strasbourg)
running on track!
Move: {
"move": "AM",
"message": "AM",
"timer": 141
}
> Moving from: BU
> Life Points: 9
> Player 1 made move:
> +++
move: AM
message: AM
timer: 141
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM....'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 359Location code is MI (Milan)
running on track!
Move: {
"move": "ST",
"message": "ST",
"timer": 144
}
> Moving from: GE
> Life Points: 9
> Player 2 made move:
> +++
move: ST
message: ST
timer: 144
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST....'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 359Location code is VI (Vienna)
running on track!
Move: {
"move": "FL",
"message": "FL",
"timer": 142
}
> Moving from: VE
> Life Points: 7
> Player 3 made move:
> +++
move: FL
message: FL
timer: 142
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "LI"
> End of Round: 7
> Starting Round: 8
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T...'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 358Location code is KL (Klausenburg)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 147
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: KL
message: KL
timer: 147
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL....'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 358Location code is CO (Cologne)
running on track!
Move: {
"move": "CO",
"message": "CO",
"timer": 144
}
> Moving from: AM
> Life Points: 9
> Player 1 made move:
> +++
move: CO
message: CO
timer: 144
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DC?T... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO....'
current 101 2
drac at sea
current 67 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 358Location code is ZU (Zurich)
running on track!
Move: {
"move": "ZU",
"message": "ZU",
"timer": 148
}
> Moving from: ST
> Life Points: 9
> Player 2 made move:
> +++
move: ZU
message: ZU
timer: 148
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT...'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 352Location code is RO (Rome)
running on track!
Move: {
"move": "RO",
"message": "RO",
"timer": 154
}
> Moving from: FL
> Life Points: 7
> Player 3 made move:
> +++
move: RO
message: RO
timer: 154
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HA"
> End of Round: 8
> Starting Round: 9
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DC?T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DC?T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 351Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 154
}
> Moving from: KL
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 154
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DC?T.M. GCD....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DC?T.M. GCD....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 351Location code is FR (Frankfurt)
running on track!
Move: {
"move": "HA",
"message": "HA",
"timer": 151
}
> Moving from: CO
> Life Points: 9
> Player 1 made move:
> +++
move: HA
message: HA
timer: 151
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD..",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA"
]
}
Program exited with code: null
Received signal: SIGSEGV
Program Output:
Move data corrupted: ""
[SyntaxError: Unexpected end of input]
Move: {}
> Player 2 disqualified for illegal move.
> +++
> ---
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 31 1
GameView.c: init score done
Game Score: 345Location code is NP (Naples)
running on track!
Move: {
"move": "NP",
"message": "NP",
"timer": 155
}
> Moving from: RO
> Life Points: 7
> Player 3 made move:
> +++
move: NP
message: NP
timer: 155
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
LI illegal
Location LI already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "CO"
> End of Round: 9
> Starting Round: 10
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T...'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 31 1
current 100 1
GameView.c: init score done
Game Score: 344Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 154
}
> Moving from: CD
> Life Points: 9
> Player 0 made move:
> +++
move: GA
message: GA
timer: 154
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DC?T... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 31 1
current 100 1
GameView.c: init score done
Game Score: 344Location code is BR (Berlin)
running on track!
Move: {
"move": "LI",
"message": "LI",
"timer": 155
}
> Moving from: HA
> Life Points: 3
> Player 1 made move:
> +++
move: LI
message: LI
timer: 155
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 36 1
current 31 1
current 100 1
GameView.c: init score done
Game Score: 338Location code is RO (Rome)
running on track!
Move: {
"move": "BI",
"message": "BI",
"timer": 159
}
> Moving from: NP
> Life Points: 7
> Player 3 made move:
> +++
move: BI
message: BI
timer: 159
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
HA illegal
Location HA already in trail
LI illegal
Location LI already in trail
undefined illegal
Move undefined
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "BU"
> End of Round: 10
> Starting Round: 11
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 36 1
current 31 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 337Location code is BC (Bucharest)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 166
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: KL
message: KL
timer: 166
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DC?T... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 36 1
current 31 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 337Location code is NU (Nuremburg)
running on track!
Move: {
"move": "FR",
"message": "FR",
"timer": 168
}
> Moving from: LI
> Life Points: 1
> Player 1 made move:
> +++
move: FR
message: FR
timer: 168
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 325Location code is NP (Naples)
running on track!
Move: {
"move": "AS",
"message": "AS",
"timer": 162
}
> Moving from: BI
> Life Points: 7
> Player 3 made move:
> +++
move: AS
message: AS
timer: 162
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D1"
> End of Round: 11
> Starting Round: 12
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 324Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 167
}
> Moving from: KL
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 167
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 324Location code is ST (Strasbourg)
running on track!
Move: {
"move": "NU",
"message": "NU",
"timer": 164
}
> Player 1 disqualified for illegal move.
> +++
move: NU
message: NU
timer: 164
> ---
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 318Location code is VE (Venice)
running on track!
Move: {
"move": "IO",
"message": "IO",
"timer": 164
}
> Moving from: AS
> Life Points: 7
> Player 3 made move:
> +++
move: IO
message: IO
timer: 164
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "ST"
> End of Round: 12
> Starting Round: 13
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T...'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 317Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 166
}
> Moving from: CD
> Life Points: 9
> Player 0 made move:
> +++
move: GA
message: GA
timer: 166
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 311Location code is VA (Valona)
running on track!
Move: {
"move": "VA",
"message": "VA",
"timer": 171
}
> Moving from: IO
> Life Points: 7
> Player 3 made move:
> +++
move: VA
message: VA
timer: 171
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BU illegal
Location BU already in trail
CO illegal
Location CO already in trail
BU illegal
Location BU already in trail
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "GE"
BU illegal
Location BU already in trail
CO illegal
Location CO already in trail
> End of Round: 13
> Starting Round: 14
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V..",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V..'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 310Location code is BC (Bucharest)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 168
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: KL
message: KL
timer: 168
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 304Location code is SO (Sofia)
running on track!
Move: {
"move": "AT",
"message": "AT",
"timer": 177
}
> Moving from: VA
> Life Points: 7
> Player 3 made move:
> +++
move: AT
message: AT
timer: 177
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "MR"
> End of Round: 14
> Starting Round: 15
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T...'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 303Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 177
}
> Moving from: KL
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 177
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 297Location code is VA (Valona)
running on track!
Move: {
"move": "VA",
"message": "VA",
"timer": 177
}
> Moving from: AT
> Life Points: 7
> Player 3 made move:
> +++
move: VA
message: VA
timer: 177
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GE illegal
Location GE already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "ZU"
> End of Round: 15
> Starting Round: 16
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
GameView.c: init score done
Game Score: 296Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 181
}
> Moving from: CD
> Life Points: 9
> Player 0 made move:
> +++
move: GA
message: GA
timer: 181
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD..",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD..'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
GameView.c: init score done
Game Score: 290Location code is SO (Sofia)
running on track!
Move: {
"move": "SA",
"message": "SA",
"timer": 184
}
> Moving from: VA
> Life Points: 7
> Player 3 made move:
> +++
move: SA
message: SA
timer: 184
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GE illegal
Location GE already in trail
MR illegal
Location MR already in trail
GE illegal
Location GE already in trail
MR illegal
Location MR already in trail
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "MU"
GE illegal
Location GE already in trail
MR illegal
Location MR already in trail
> End of Round: 16
> Starting Round: 17
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
GameView.c: init score done
Game Score: 289Location code is BC (Bucharest)
Move: {
"move": "BC",
"message": "BC",
"timer": 188
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: BC
message: BC
timer: 188
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
GameView.c: init score done
Game Score: 283Location code is VA (Valona)
Move: {
"move": "VA",
"message": "VA",
"timer": 186
}
> Moving from: SA
> Life Points: 7
> Player 3 made move:
> +++
move: VA
message: VA
timer: 186
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
ST illegal
Location ST already in trail
ZU illegal
Location ZU already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "VI"
> End of Round: 17
> Starting Round: 18
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 282Location code is SZ (Szeged)
Move: {
"move": "SZ",
"message": "SZ",
"timer": 192
}
> Moving from: BC
> Life Points: 9
> Player 0 made move:
> +++
move: SZ
message: SZ
timer: 192
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 276Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 197
}
> Moving from: VA
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 197
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D1"
> End of Round: 18
> Starting Round: 19
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 275Location code is BD (Budapest)
Move: {
"move": "BD",
"message": "BD",
"timer": 201
}
> Moving from: SZ
> Life Points: 9
> Player 0 made move:
> +++
move: BD
message: BD
timer: 201
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BD",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 269Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 198
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 198
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 19
> Starting Round: 20
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DC?T.V.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BD",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DC?T.V.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 255Location code is ZA (Zagreb)
Move: {
"move": "ZA",
"message": "ZA",
"timer": 207
}
> Moving from: BD
> Life Points: 9
> Player 0 made move:
> +++
move: ZA
message: ZA
timer: 207
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DC?T.V. GZA.... SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BD",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"ZA",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DC?T.V. GZA.... SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 249Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 208
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 208
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BD"
> End of Round: 20
> Starting Round: 21
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DC?T.V. GZA.... SJM.... HZU.... MSO.... DC?T.M.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BD",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"ZA",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DC?T.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DC?T.V. GZA.... SJM.... HZU.... MSO.... DC?T.M.'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 248Location code is VI (Vienna)
Move: {
"move": "VI",
"message": "VI",
"timer": 211
}
> Moving from: ZA
> Life Points: 9
> Player 0 made move:
> +++
move: VI
message: VI
timer: 211
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DVIT.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DHIT.V. GZA.... SJM.... HZU.... MSO.... DC?T.M. GVITTT. SJM.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BD",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"ZA",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VI",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program was terminated after maximum allowed time.
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DVIT.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DHIT.V. GZA.... SJM.... HZU.... MSO.... DC?T.M. GVITTT. SJM.... HZU....'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 68 1
current 68 1
current 68 1
current 100 1
Move: {
"move": "",
"message": "",
"timer": 1507252
}
> Player 3 disqualified for illegal move.
> +++
move:
message:
timer: 1507252
> ---
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VI illegal
Location VI already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "SZ"
> End of Round: 21
> Starting Round: 22
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun1757/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DVIT.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DHIT.V. GZA.... SJM.... HZU.... MSO.... DC?T.M. GVITTT. SJM.... HZU.... MSO.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"VE",
"KL",
"SR",
"SR",
"BA",
"MU",
"CD",
"BO",
"TO",
"TO",
"ZU",
"GA",
"NA",
"CF",
"MR",
"+++Out Of Cheese Error+++",
"KL",
"LE",
"PA",
"GO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"BU",
"GE",
"VE",
"+++Out Of Cheese Error+++",
"GA",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"KL",
"CO",
"ZU",
"RO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"CD",
"HA",
"+++MELON MELON MELON+++",
"NP",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"GA",
"LI",
"+++Out Of Cheese Error+++",
"BI",
"+++Oneoneoneoneoneoneone+++",
"KL",
"FR",
"+++MELON MELON MELON+++",
"AS",
"+++MELON MELON MELON+++",
"CD",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"IO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"GA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VA",
"+++Mr. Jelly! Mr. Jelly!+++",
"KL",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"AT",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Oneoneoneoneoneoneone+++",
"GA",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SA",
"+++Whoops! Here Comes The Cheese!+++",
"BC",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SZ",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BD",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"ZA",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VI",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++"
]
}
Program was terminated after maximum allowed time.
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DC?T... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DC?T... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DC?T... GGA.... SLIT... HZU.... MBI.... DC?T.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DC?T... GGA.... SJM.... HZU.... MVA.... DC?.V.. GKL.... SJM.... HZU.... MAT.... DC?T... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DC?T.M. GBC.... SJM.... HZU.... MVA.... DVIT.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DHIT.V. GZA.... SJM.... HZU.... MSO.... DC?T.M. GVITTT. SJM.... HZU.... MSO.... DC?T...'
current 101 2
drac at sea
current 67 1
current 100 1
current -1 1
current 100 1
current 100 1
current 25 1
current 36 1
current 31 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current -1 1
current 100 1
current 68 1
current 68 1
current 68 1
current 100 1
Move: {
"move": "",
"message": "",
"timer": 1502242
}
> Player 0 disqualified for illegal move.
> +++
move:
message:
timer: 1502242
> ---
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "KL"
> End of Round: 22
> Starting Round: 23
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BC"
> End of Round: 23
> Starting Round: 24
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "GA"
> End of Round: 24
> Starting Round: 25
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BC illegal
Location BC already in trail
BC illegal
Location BC already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "CD"
BC illegal
Location BC already in trail
> End of Round: 25
> Starting Round: 26
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D1"
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
> End of Round: 26
> Starting Round: 27
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
> End of Round: 27
> Starting Round: 28
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
GA illegal
Location GA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "KL"
GA illegal
Location GA already in trail
> End of Round: 28
> Starting Round: 29
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CD illegal
Location CD already in trail
GA illegal
Location GA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BD"
> End of Round: 29
> Starting Round: 30
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
KL illegal
Location KL already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "SZ"
KL illegal
Location KL already in trail
> End of Round: 30
> Starting Round: 31
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "ZA"
> End of Round: 31
> Starting Round: 32
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
BD illegal
Location BD already in trail
JM illegal
Hospital
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D2"
BD illegal
Location BD already in trail
JM illegal
Hospital
> End of Round: 32
> Starting Round: 33
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
KL illegal
Location KL already in trail
ZA illegal
Location ZA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 33
> Starting Round: 34
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
ZA illegal
Location ZA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "KL"
> End of Round: 34
> Starting Round: 35
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "GA"
> End of Round: 35
> Starting Round: 36
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "CD"
> End of Round: 36
> Starting Round: 37
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "TP"
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
> End of Round: 37
> Starting Round: 38
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D3"
GA illegal
Location GA already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
> End of Round: 38
> Starting Round: 39
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CD illegal
Location CD already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "BC"
> End of Round: 39
> Starting Round: 40
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "CN"
> End of Round: 40
> Starting Round: 41
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BC illegal
Location BC already in trail
GA illegal
Location GA already in trail
BC illegal
Location BC already in trail
GA illegal
Location GA already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "BS"
BC illegal
Location BC already in trail
GA illegal
Location GA already in trail
> End of Round: 41
> Starting Round: 42
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CN illegal
Location CN already in trail
CN illegal
Location CN already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Cannot hide at sea
Default Dracula Move: "IO"
CN illegal
Location CN already in trail
> End of Round: 42
> Starting Round: 43
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BS illegal
Location BS already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Cannot hide at sea
Default Dracula Move: "VA"
> End of Round: 43
> Starting Round: 44
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
IO illegal
Location IO already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D2"
> End of Round: 44
> Starting Round: 45
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VA illegal
Location VA already in trail
BS illegal
Location BS already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Cannot hide at sea
Default Dracula Move: "SA"
> End of Round: 45
> Starting Round: 46
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VA illegal
Location VA already in trail
IO illegal
Location IO already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "SO"
> End of Round: 46
> Starting Round: 47
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SA illegal
Location SA already in trail
VA illegal
Location VA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "SJ"
> End of Round: 47
> Starting Round: 48
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
SO illegal
Location SO already in trail
VA illegal
Location VA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "BE"
> End of Round: 48
> Starting Round: 49
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
SJ illegal
Location SJ already in trail
SO illegal
Location SO already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "SZ"
> End of Round: 49
> Starting Round: 50
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
BE illegal
Location BE already in trail
JM illegal
Hospital
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D1"
BE illegal
Location BE already in trail
> End of Round: 50
> Starting Round: 51
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
BE illegal
Location BE already in trail
JM illegal
Hospital
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "ZA"
BE illegal
Location BE already in trail
> End of Round: 51
> Starting Round: 52
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
SJ illegal
Location SJ already in trail
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 52
> Starting Round: 53
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BD"
> End of Round: 53
> Starting Round: 54
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SZ illegal
Location SZ already in trail
ZA illegal
Location ZA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "KL"
> End of Round: 54
> Starting Round: 55
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BC"
> End of Round: 55
> Starting Round: 56
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "CN"
> End of Round: 56
> Starting Round: 57
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BC illegal
Location BC already in trail
BC illegal
Location BC already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D1"
BC illegal
Location BC already in trail
> End of Round: 57
> Starting Round: 58
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BC illegal
Location BC already in trail
BC illegal
Location BC already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "GA"
BC illegal
Location BC already in trail
> End of Round: 58
> Starting Round: 59
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BC illegal
Location BC already in trail
BC illegal
Location BC already in trail
CN illegal
Location CN already in trail
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
BC illegal
Location BC already in trail
> End of Round: 59
> Starting Round: 60
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BC illegal
Location BC already in trail
BC illegal
Location BC already in trail
CN illegal
Location CN already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "KL"
BC illegal
Location BC already in trail
> End of Round: 60
> Starting Round: 61
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GA illegal
Location GA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "SZ"
> End of Round: 61
> Starting Round: 62
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BD"
> End of Round: 62
> Starting Round: 63
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
KL illegal
Location KL already in trail
SZ illegal
Location SZ already in trail
KL illegal
Location KL already in trail
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D2"
KL illegal
Location KL already in trail
SZ illegal
Location SZ already in trail
> End of Round: 63
> Starting Round: 64
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
KL illegal
Location KL already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "ZA"
> End of Round: 64
> Starting Round: 65
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
JM illegal
Hospital
BD illegal
Location BD already in trail
JM illegal
Hospital
SZ illegal
Location SZ already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "MU"
BD illegal
Location BD already in trail
JM illegal
Hospital
> End of Round: 65
> Starting Round: 66
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
ZA illegal
Location ZA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "NU"
> End of Round: 66
> Starting Round: 67
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 67
> Starting Round: 68
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "ST"
> End of Round: 68
> Starting Round: 69
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D1"
> End of Round: 69
> Starting Round: 70
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "CO"
> End of Round: 70
> Starting Round: 71
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "LI"
> End of Round: 71
> Starting Round: 72
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "FR"
> End of Round: 72
> Starting Round: 73
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
LI illegal
Location LI already in trail
CO illegal
Location CO already in trail
LI illegal
Location LI already in trail
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "NU"
CO illegal
Location CO already in trail
LI illegal
Location LI already in trail
> End of Round: 73
> Starting Round: 74
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "PR"
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
> End of Round: 74
> Starting Round: 75
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "VI"
> End of Round: 75
> Starting Round: 76
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
PR illegal
Location PR already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 76
> Starting Round: 77
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "VI"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
PR illegal
Location PR already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D1"
> End of Round: 77
> Starting Round: 78
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
PR illegal
Location PR already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "MU"
> End of Round: 78
> Starting Round: 79
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VI illegal
Location VI already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "MI"
> End of Round: 79
> Starting Round: 80
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "ZU"
> End of Round: 80
> Starting Round: 81
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MI illegal
Location MI already in trail
MU illegal
Location MU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "GE"
> End of Round: 81
> Starting Round: 82
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
ZU illegal
Location ZU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "ST"
> End of Round: 82
> Starting Round: 83
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GE illegal
Location GE already in trail
MU illegal
Location MU already in trail
ZU illegal
Location ZU already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "NU"
> End of Round: 83
> Starting Round: 84
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "D2"
> End of Round: 84
> Starting Round: 85
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GE illegal
Location GE already in trail
NU illegal
Location NU already in trail
ZU illegal
Location ZU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "FR"
> End of Round: 85
> Starting Round: 86
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NU illegal
Location NU already in trail
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "LI"
> End of Round: 86
> Starting Round: 87
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "CO"
> End of Round: 87
> Starting Round: 88
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
ST illegal
Location ST already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HA"
> End of Round: 88
> Starting Round: 89
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
LI illegal
Location LI already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 89
> Starting Round: 90
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
LI illegal
Location LI already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D1"
> End of Round: 90
> Starting Round: 91
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
LI illegal
Location LI already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "NS"
> End of Round: 91
> Starting Round: 92
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
HA illegal
Location HA already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "AM"
> End of Round: 92
> Starting Round: 93
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NS illegal
Location NS already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "CO"
> End of Round: 93
> Starting Round: 94
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
AM illegal
Location AM already in trail
AM illegal
Location AM already in trail
HA illegal
Location HA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "FR"
AM illegal
Location AM already in trail
> End of Round: 94
> Starting Round: 95
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
CO illegal
Location CO already in trail
> End of Round: 95
> Starting Round: 96
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "LI"
CO illegal
Location CO already in trail
> End of Round: 96
> Starting Round: 97
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
FR illegal
Location FR already in trail
undefined illegal
Move undefined
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BR"
> End of Round: 97
> Starting Round: 98
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
LI illegal
Location LI already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "PR"
> End of Round: 98
> Starting Round: 99
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BR illegal
Location BR already in trail
BR illegal
Location BR already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "NU"
BR illegal
Location BR already in trail
> End of Round: 99
> Starting Round: 100
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
PR illegal
Location PR already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D5"
FR illegal
Location FR already in trail
LI illegal
Location LI already in trail
> End of Round: 100
> Starting Round: 101
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
LI illegal
Location LI already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 101
> Starting Round: 102
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "LI"
> End of Round: 102
> Starting Round: 103
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BR"
> End of Round: 103
> Starting Round: 104
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
LI illegal
Location LI already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "HA"
> End of Round: 104
> Starting Round: 105
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BR illegal
Location BR already in trail
BR illegal
Location BR already in trail
LI illegal
Location LI already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "NS"
BR illegal
Location BR already in trail
> End of Round: 105
> Starting Round: 106
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
HA illegal
Location HA already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D2"
> End of Round: 106
> Starting Round: 107
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BR illegal
Location BR already in trail
BR illegal
Location BR already in trail
LI illegal
Location LI already in trail
NS illegal
Location NS already in trail
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "CO"
BR illegal
Location BR already in trail
> End of Round: 107
> Starting Round: 108
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
HA illegal
Location HA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "FR"
> End of Round: 108
> Starting Round: 109
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
CO illegal
Location CO already in trail
> End of Round: 109
> Starting Round: 110
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CO illegal
Location CO already in trail
CO illegal
Location CO already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "NU"
CO illegal
Location CO already in trail
> End of Round: 110
> Starting Round: 111
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
FR illegal
Location FR already in trail
FR illegal
Location FR already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "PR"
FR illegal
Location FR already in trail
> End of Round: 111
> Starting Round: 112
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D1"
> End of Round: 112
> Starting Round: 113
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NU illegal
Location NU already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "VI"
> End of Round: 113
> Starting Round: 114
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
PR illegal
Location PR already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "ZA"
> End of Round: 114
> Starting Round: 115
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
VI illegal
Location VI already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "SJ"
> End of Round: 115
> Starting Round: 116
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
ZA illegal
Location ZA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
Default Dracula Move: "HI"
> End of Round: 116
> Starting Round: 117
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
ZA illegal
Location ZA already in trail
undefined illegal
Move undefined
D1 illegal
Illegal double-back: not adjacent or is already in trail
D2 illegal
Illegal double-back: not adjacent or is already in trail
D3 illegal
Illegal double-back: not adjacent or is already in trail
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "BE"
> End of Round: 117
> Starting Round: 118
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
JM illegal
Hospital
SJ illegal
Location SJ already in trail
undefined illegal
Move undefined
D4 illegal
Illegal double-back: not adjacent or is already in trail
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "SO"
> End of Round: 118
> Starting Round: 119
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
BE illegal
Location BE already in trail
SJ illegal
Location SJ already in trail
undefined illegal
Move undefined
D5 illegal
Illegal double-back: not adjacent or is already in trail
HI illegal
Already made a hide
Default Dracula Move: "D1"
BE illegal
Location BE already in trail
> End of Round: 119
> Starting Round: 120
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.1
Default Hunter Move "JM"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.3
Default Hunter Move "SO"
--------------------------------------------------------------------------
> End of game:
> +++
score: 137
revealedPastPlays: GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DVET... GKL.... SSR.... HSR.... MBA.... DMUT... GCD.... SBO.... HTO.... MTO.... DZUT... GGA.... SNA.... HCF.... MMR.... DD2T... GKL.... SLE.... HPA.... MGO.... DNUT... GCD.... SBU.... HGE.... MVET... DFRT... GGA.... SAM.... HST.... MFL.... DLIT... GKL.... SCO.... HZUT... MRO.... DHAT.M. GCD.... SHATD.. HZU.... MNP.... DCOT... GGA.... SLIT... HZU.... MBI.... DBUT.M. GKL.... SFRT... HZU.... MAS.... DD1T.M. GCD.... SJM.... HZU.... MIO.... DSTT... GGA.... SJM.... HZU.... MVA.... DGE.V.. GKL.... SJM.... HZU.... MAT.... DMRT... GCD.... SJM.... HZU.... MVA.... DZUT.M. GGA.... SJM.... HZUTD.. MSA.... DMUT.M. GBC.... SJM.... HZU.... MVA.... DVIT.M. GSZ.... SJM.... HZU.... MSO.... DD1T.M. GBD.... SJM.... HZU.... MVR.... DHIT.V. GZA.... SJM.... HZU.... MSO.... DBDT.M. GVITTT. SJM.... HZU.... MSO.... DSZT... GVI.... SJM.... HZU.... MSO.... DKLT.M. GVI.... SJM.... HZU.... MSO.... DBCT... GVI.... SJM.... HZU.... MSO.... DGAT... GVI.... SJM.... HZU.... MSO.... DCDT... GVI.... SJM.... HZU.... MSO.... DD1.VM. GVI.... SJM.... HZU.... MSO.... DHIT.M. GVI.... SJM.... HZU.... MSO.... DKLT.M. GVI.... SJM.... HZU.... MSO.... DBDT.M. GVI.... SJM.... HZU.... MSO.... DSZT.M. GVI.... SJM.... HZU.... MSO.... DZAT.M. GVI.... SJM.... HZU.... MSO.... DD2T.V. GVI.... SJM.... HZU.... MSO.... DHIT.M. GVI.... SJM.... HZU.... MSO.... DKLT.M. GVI.... SJM.... HZU.... MSO.... DGAT.M. GVI.... SJM.... HZU.... MSO.... DCDT.M. GVI.... SJM.... HZU.... MSO.... DTPT.M. GVI.... SJM.... HZU.... MSO.... DD3T.M. GVI.... SJM.... HZU.... MSO.... DBC.VM. GVI.... SJM.... HZU.... MSO.... DCNT.M. GVI.... SJM.... HZU.... MSO.... DBS..M. GVI.... SJM.... HZU.... MSO.... DIO..M. GVI.... SJM.... HZU.... MSO.... DVAT.M. GVI.... SJM.... HZU.... MSO.... DD2..M. GVI.... SJM.... HZU.... MSO.... DSAT.V. GVI.... SJM.... HZU.... MSO.... DSOT.M. GVI.... SJM.... HZU.... MSOTD.. DSJT... GVI.... SJM.... HZU.... MSO.... DBET... GVI.... SJM.... HZU.... MSO.... DSZT.M. GVI.... SJM.... HZU.... MSO.... DD1T... GVI.... SJM.... HZU.... MSO.... DZAT.M. GVI.... SJM.... HZU.... MSO.... DHI.V.. GVI.... SJM.... HZU.... MSO.... DBDT.M. GVI.... SJM.... HZU.... MSO.... DKLT.M. GVI.... SJM.... HZU.... MSO.... DBCT.M. GVI.... SJM.... HZU.... MSO.... DCNT.M. GVI.... SJM.... HZU.... MSO.... DD1T.M. GVI.... SJM.... HZU.... MSO.... DGAT.V. GVI.... SJM.... HZU.... MSO.... DHIT.M. GVI.... SJM.... HZU.... MSO.... DKLT.M. GVI.... SJM.... HZU.... MSO.... DSZT.M. GVI.... SJM.... HZU.... MSO.... DBDT.M. GVI.... SJM.... HZU.... MSO.... DD2T.M. GVI.... SJM.... HZU.... MSO.... DZAT.M. GVI.... SJM.... HZU.... MSO.... DMU.VM. GVI.... SJM.... HZU.... MSO.... DNUT.M. GVI.... SJM.... HZU.... MSO.... DHIT.M. GVI.... SJM.... HZU.... MSO.... DSTT.M. GVI.... SJM.... HZU.... MSO.... DD1T.M. GVI.... SJM.... HZU.... MSO.... DCOT.M. GVI.... SJM.... HZU.... MSO.... DLIT.V. GVI.... SJM.... HZU.... MSO.... DFRT.M. GVI.... SJM.... HZU.... MSO.... DNUT.M. GVI.... SJM.... HZU.... MSO.... DPRT.M. GVI.... SJM.... HZU.... MSO.... DVIT.M. GVITD.. SJM.... HZU.... MSO.... DHIT.M. GVITD.. SJM.... HZU.... MSO.... DD1T.M. GJM.... SJM.... HZU.... MSO.... DMU.VM. GJM.... SJM.... HZU.... MSO.... DMIT.M. GJM.... SJM.... HZU.... MSO.... DZUT.M. GJM.... SJM.... HZUTD.. MSO.... DGET... GJM.... SJM.... HZU.... MSO.... DSTT... GJM.... SJM.... HZU.... MSO.... DNUT.M. GJM.... SJM.... HZU.... MSO.... DD2T.V. GJM.... SJM.... HZU.... MSO.... DFRT.M. GJM.... SJM.... HZU.... MSO.... DLIT... GJM.... SJM.... HZU.... MSO.... DCOT.M. GJM.... SJM.... HZU.... MSO.... DHAT.M. GJM.... SJM.... HZU.... MSO.... DHIT.M. GJM.... SJM.... HZU.... MSO.... DD1T.M. GJM.... SJM.... HZU.... MSO.... DNS..M. GJM.... SJM.... HZU.... MSO.... DAMT.M. GJM.... SJM.... HZU.... MSO.... DCOT.M. GJM.... SJM.... HZU.... MSO.... DFRT.M. GJM.... SJM.... HZU.... MSO.... DHIT.M. GJM.... SJM.... HZU.... MSO.... DLIT.M. GJM.... SJM.... HZU.... MSO.... DBRT... GJM.... SJM.... HZU.... MSO.... DPRT.M. GJM.... SJM.... HZU.... MSO.... DNUT.M. GJM.... SJM.... HZU.... MSO.... DD5T.M. GJM.... SJM.... HZU.... MSO.... DHIT.M. GJM.... SJM.... HZU.... MSO.... DLIT.M. GJM.... SJM.... HZU.... MSO.... DBRT.M. GJM.... SJM.... HZU.... MSO.... DHA.VM. GJM.... SJM.... HZU.... MSO.... DNS..M. GJM.... SJM.... HZU.... MSO.... DD2T.M. GJM.... SJM.... HZU.... MSO.... DCOT.M. GJM.... SJM.... HZU.... MSO.... DFRT.M. GJM.... SJM.... HZU.... MSO.... DHIT.M. GJM.... SJM.... HZU.... MSO.... DNUT.V. GJM.... SJM.... HZU.... MSO.... DPRT... GJM.... SJM.... HZU.... MSO.... DD1T.M. GJM.... SJM.... HZU.... MSO.... DVIT.M. GJM.... SJM.... HZU.... MSO.... DZAT.M. GJM.... SJM.... HZU.... MSO.... DSJT.M. GJM.... SJM.... HZU.... MSO.... DHIT.M. GJM.... SJM.... HZU.... MSO.... DBE.VM. GJM.... SJM.... HZU.... MSO.... DSOT.M. GJM.... SJM.... HZU.... MSOTD.. DD1T.M. GJM.... SJM.... HZU.... MSOTD..
messages: ["CD","LS","CA","GR","AS","GA","SN","MA","AL","VE","KL","SR","SR","BA","MU","CD","BO","TO","TO","ZU","GA","NA","CF","MR","+++Out Of Cheese Error+++","KL","LE","PA","GO","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","CD","BU","GE","VE","+++Out Of Cheese Error+++","GA","AM","ST","FL","+++Whoops! Here Comes The Cheese!+++","KL","CO","ZU","RO","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","CD","HA","+++MELON MELON MELON+++","NP","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","GA","LI","+++Out Of Cheese Error+++","BI","+++Oneoneoneoneoneoneone+++","KL","FR","+++MELON MELON MELON+++","AS","+++MELON MELON MELON+++","CD","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","IO","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","GA","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","VA","+++Mr. Jelly! Mr. Jelly!+++","KL","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","AT","+++Whoops! Here Comes The Cheese!+++","CD","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","VA","+++Oneoneoneoneoneoneone+++","GA","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","SA","+++Whoops! Here Comes The Cheese!+++","BC","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++","VA","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","SZ","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","SO","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","BD","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","VR","+++Out Of Cheese Error+++","ZA","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","SO","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","VI","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++MELON MELON MELON+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Out Of Cheese Error+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++MELON MELON MELON+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Whoops! Here Comes The Cheese!+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++MELON MELON MELON+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++","+++Oneoneoneoneoneoneone+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++MELON MELON MELON+++","+++Oneoneoneoneoneoneone+++","+++Whoops! Here Comes The Cheese!+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++MELON MELON MELON+++","+++Mr. Jelly! Mr. Jelly!+++","+++Whoops! Here Comes The Cheese!+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Oneoneoneoneoneoneone+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Out Of Cheese Error+++","+++Out Of Cheese Error+++","+++Mr. Jelly! Mr. Jelly!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Whoops! Here Comes The Cheese!+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Oneoneoneoneoneoneone+++","+++Out Of Cheese Error+++","+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++","+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++","+++Mr. Jelly! Mr. Jelly!+++"]
> ---
> Game Over
undefined
120
Player 0 was disqualified? true
Player 1 was disqualified? true
Player 2 was disqualified? true
Player 3 was disqualified? true
Player 4 was disqualified? true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment