Skip to content

Instantly share code, notes, and snippets.

@matthewpalmer
Created October 21, 2014 04:38
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/962755782735686968ab to your computer and use it in GitHub Desktop.
Save matthewpalmer/962755782735686968ab to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
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/dryrun31449/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": 110
}
> Moving from: undefined
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 110
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/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": 105
}
> Moving from: undefined
> Life Points: 9
> Player 1 made move:
> +++
move: LS
message: LS
timer: 105
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/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": 108
}
> Moving from: undefined
> Life Points: 9
> Player 2 made move:
> +++
move: CA
message: CA
timer: 108
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/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": 110
}
> Moving from: undefined
> Life Points: 9
> Player 3 made move:
> +++
move: GR
message: GR
timer: 110
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun31449/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": 211
}
> Moving from: undefined
> Blood Points: 40
> Player 4 made move:
> +++
move: AS
message: AS
timer: 211
> ---
> End of Round: 0
> Starting Round: 1
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/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/dryrun31449/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/dryrun31449/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": 135
}
> Moving from: CA
> Life Points: 9
> Player 2 made move:
> +++
move: MA
message: MA
timer: 135
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/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": 115
}
> Moving from: GR
> Life Points: 9
> Player 3 made move:
> +++
move: AL
message: AL
timer: 115
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun31449/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}I think we're trapped in cantGetTo...
Got a move from cantGetTo 17
cantGetTo move: VE
Move: {
"move": "CD",
"message": "CD",
"timer": 183
}
> Moving from: AS
> Blood Points: 38
> Player 4 made move:
> +++
move: CD
message: CD
timer: 183
> ---
> End of Round: 1
> Starting Round: 2
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT...'
current 101 2
drac at sea
current 17 1
GameView.c: init score done
Game Score: 364Location code is BC (Bucharest)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 121
}
> Moving from: GA
> Life Points: 9
> Player 0 made move:
> +++
move: KL
message: KL
timer: 121
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL....'
current 101 2
drac at sea
current 17 1
GameView.c: init score done
Game Score: 364Location code is MA (Madrid)
running on track!
Move: {
"move": "SR",
"message": "SR",
"timer": 123
}
> Moving from: SN
> Life Points: 9
> Player 1 made move:
> +++
move: SR
message: SR
timer: 123
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR....'
current 101 2
drac at sea
current 17 1
GameView.c: init score done
Game Score: 364Location code is SR (Saragossa)
running on track!
Move: {
"move": "SR",
"message": "SR",
"timer": 132
}
> Moving from: MA
> Life Points: 9
> Player 2 made move:
> +++
move: SR
message: SR
timer: 132
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR....'
current 101 2
drac at sea
current 17 1
GameView.c: init score done
Game Score: 364Location code is MA (Madrid)
running on track!
Move: {
"move": "BA",
"message": "BA",
"timer": 123
}
> Moving from: AL
> Life Points: 9
> Player 3 made move:
> +++
move: BA
message: BA
timer: 123
> ---
--------------------------------------------------------------------------
> Running player 4...
/tmp/dryrun31449/dracula
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA"
]
}
Program Output: past plays: 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA....'
GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DAS.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA....'
current 0 2
drac at sea
current 17 1
GameView.c: init score done
Deciding dracula...
got a move...
Most obvious move: KL
Finished registering obvious move
Showing all..
{17,34,26}Showing hunters...
{34,62,26,17,14,13,8,56,40,11,5,55,37,1,50,42,35,12,63,43}Showing difference...
Not inserting 17
Not inserting 34
Not inserting 26
{}I think we're trapped in cantGetTo...
Got a move from cantGetTo 17
cantGetTo move: KL
Move: {
"move": "CD",
"message": "CD",
"timer": 195
}
CD illegal
Location CD already in trail
> Player 4 disqualified for illegal move.
> +++
move: CD
message: CD
timer: 195
> ---
generating default dracula move
undefined illegal
Move undefined
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: "D1"
> End of Round: 2
> Starting Round: 3
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T...'
current 101 2
drac at sea
current 17 1
current 17 1
GameView.c: init score done
Game Score: 363Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 126
}
> Moving from: KL
> Life Points: 9
> Player 0 made move:
> +++
move: CD
message: CD
timer: 126
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD.",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD.'
current 101 2
drac at sea
current 17 1
current 17 1
GameView.c: init score done
Game Score: 363Location code is TO (Toulouse)
running on track!
Move: {
"move": "BO",
"message": "BO",
"timer": 129
}
> Moving from: SR
> Life Points: 9
> Player 1 made move:
> +++
move: BO
message: BO
timer: 129
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO....'
current 101 2
drac at sea
current 17 1
current 17 1
GameView.c: init score done
Game Score: 363Location code is MA (Madrid)
running on track!
Move: {
"move": "TO",
"message": "TO",
"timer": 128
}
> Moving from: SR
> Life Points: 9
> Player 2 made move:
> +++
move: TO
message: TO
timer: 128
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO....'
current 101 2
drac at sea
current 17 1
current 17 1
GameView.c: init score done
Game Score: 363Location code is SR (Saragossa)
running on track!
Move: {
"move": "TO",
"message": "TO",
"timer": 130
}
> Moving from: BA
> Life Points: 9
> Player 3 made move:
> +++
move: TO
message: TO
timer: 130
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
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: 3
> Starting Round: 4
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT...'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
GameView.c: init score done
Game Score: 362Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 136
}
> Moving from: CD
> Life Points: 1
> Player 0 made move:
> +++
move: GA
message: GA
timer: 136
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
GameView.c: init score done
Game Score: 362Location code is SR (Saragossa)
running on track!
Move: {
"move": "NA",
"message": "NA",
"timer": 135
}
> Moving from: BO
> Life Points: 9
> Player 1 made move:
> +++
move: NA
message: NA
timer: 135
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
GameView.c: init score done
Game Score: 362Location code is SR (Saragossa)
running on track!
Move: {
"move": "CF",
"message": "CF",
"timer": 140
}
> Moving from: TO
> Life Points: 9
> Player 2 made move:
> +++
move: CF
message: CF
timer: 140
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
GameView.c: init score done
Game Score: 362Location code is SR (Saragossa)
running on track!
Move: {
"move": "MR",
"message": "MR",
"timer": 133
}
> Moving from: TO
> Life Points: 9
> Player 3 made move:
> +++
move: MR
message: MR
timer: 133
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
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: 4
> Starting Round: 5
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT...'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
GameView.c: init score done
Game Score: 361Location code is BC (Bucharest)
running on track!
Move: {
"move": "KL",
"message": "KL",
"timer": 137
}
> Moving from: GA
> Life Points: 1
> Player 0 made move:
> +++
move: KL
message: KL
timer: 137
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
GameView.c: init score done
Game Score: 361Location code is PA (Paris)
running on track!
Move: {
"move": "LE",
"message": "LE",
"timer": 134
}
> Moving from: NA
> Life Points: 9
> Player 1 made move:
> +++
move: LE
message: LE
timer: 134
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
GameView.c: init score done
Game Score: 361Location code is TO (Toulouse)
running on track!
Move: {
"move": "PA",
"message": "PA",
"timer": 136
}
> Moving from: CF
> Life Points: 9
> Player 2 made move:
> +++
move: PA
message: PA
timer: 136
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
GameView.c: init score done
Game Score: 361Location code is ZU (Zurich)
running on track!
Move: {
"move": "GO",
"message": "GO",
"timer": 145
}
> Moving from: MR
> Life Points: 9
> Player 3 made move:
> +++
move: GO
message: GO
timer: 145
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
CD illegal
Location CD 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: 5
> Starting Round: 6
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT...'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
GameView.c: init score done
Game Score: 360Location code is SZ (Szeged)
running on track!
Move: {
"move": "CD",
"message": "CD",
"timer": 142
}
> Moving from: KL
> Life Points: 1
> Player 0 made move:
> +++
move: CD
message: CD
timer: 142
> ---
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT...'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
GameView.c: init score done
Game Score: 354Location code is PA (Paris)
running on track!
Move: {
"move": "BU",
"message": "BU",
"timer": 146
}
> Moving from: LE
> Life Points: 9
> Player 1 made move:
> +++
move: BU
message: BU
timer: 146
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
GameView.c: init score done
Game Score: 354Location code is ST (Strasbourg)
running on track!
Move: {
"move": "GE",
"message": "GE",
"timer": 146
}
> Moving from: PA
> Life Points: 9
> Player 2 made move:
> +++
move: GE
message: GE
timer: 146
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
GameView.c: init score done
Game Score: 354Location code is MI (Milan)
running on track!
Move: {
"move": "VE",
"message": "VE",
"timer": 144
}
> Moving from: GO
> Life Points: 9
> Player 3 made move:
> +++
move: VE
message: VE
timer: 144
> ---
--------------------------------------------------------------------------
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: "SZ"
> End of Round: 6
> Starting Round: 7
--------------------------------------------------------------------------
> Running player 0...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T...",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T...'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
GameView.c: init score done
Game Score: 353Location code is KL (Klausenburg)
running on track!
Move: {
"move": "GA",
"message": "GA",
"timer": 143
}
> Player 0 disqualified for illegal move.
> +++
move: GA
message: GA
timer: 143
> ---
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
GameView.c: init score done
Game Score: 353Location code is ST (Strasbourg)
running on track!
Move: {
"move": "AM",
"message": "AM",
"timer": 157
}
> Moving from: BU
> Life Points: 9
> Player 1 made move:
> +++
move: AM
message: AM
timer: 157
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
GameView.c: init score done
Game Score: 353Location code is MI (Milan)
running on track!
Move: {
"move": "ST",
"message": "ST",
"timer": 146
}
> Moving from: GE
> Life Points: 9
> Player 2 made move:
> +++
move: ST
message: ST
timer: 146
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
GameView.c: init score done
Game Score: 353Location code is VI (Vienna)
running on track!
Move: {
"move": "FL",
"message": "FL",
"timer": 147
}
> Moving from: VE
> Life Points: 9
> Player 3 made move:
> +++
move: FL
message: FL
timer: 147
> ---
--------------------------------------------------------------------------
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: 7
> Starting Round: 8
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 352Location code is CO (Cologne)
running on track!
Move: {
"move": "CO",
"message": "CO",
"timer": 149
}
> Moving from: AM
> Life Points: 9
> Player 1 made move:
> +++
move: CO
message: CO
timer: 149
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 352Location code is ZU (Zurich)
running on track!
Move: {
"move": "ZU",
"message": "ZU",
"timer": 212
}
> Moving from: ST
> Life Points: 9
> Player 2 made move:
> +++
move: ZU
message: ZU
timer: 212
> ---
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 346Location code is RO (Rome)
running on track!
Move: {
"move": "RO",
"message": "RO",
"timer": 152
}
> Moving from: FL
> Life Points: 9
> Player 3 made move:
> +++
move: RO
message: RO
timer: 152
> ---
--------------------------------------------------------------------------
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: "D3"
KL illegal
Location KL already in trail
SZ illegal
Location SZ already in trail
> End of Round: 8
> Starting Round: 9
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
GameView.c: init score done
Game Score: 345Location code is FR (Frankfurt)
running on track!
Move: {
"move": "HA",
"message": "HA",
"timer": 166
}
> Moving from: CO
> Life Points: 9
> Player 1 made move:
> +++
move: HA
message: HA
timer: 166
> ---
--------------------------------------------------------------------------
> Running player 2...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"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/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
GameView.c: init score done
Game Score: 339Location code is NP (Naples)
running on track!
Move: {
"move": "NP",
"message": "NP",
"timer": 155
}
> Moving from: RO
> Life Points: 9
> 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
BD illegal
Location BD already in trail
GA illegal
Location GA 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: "BE"
> End of Round: 9
> Starting Round: 10
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++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.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
GameView.c: init score done
Game Score: 338Location code is BR (Berlin)
running on track!
Move: {
"move": "LI",
"message": "LI",
"timer": 175
}
> Moving from: HA
> Life Points: 9
> Player 1 made move:
> +++
move: LI
message: LI
timer: 175
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
GameView.c: init score done
Game Score: 332Location code is RO (Rome)
running on track!
Move: {
"move": "BI",
"message": "BI",
"timer": 175
}
> Moving from: NP
> Life Points: 9
> Player 3 made move:
> +++
move: BI
message: BI
timer: 175
> ---
--------------------------------------------------------------------------
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
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: "SJ"
> End of Round: 10
> Starting Round: 11
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 331Location code is NU (Nuremburg)
running on track!
Move: {
"move": "FR",
"message": "FR",
"timer": 165
}
> Moving from: LI
> Life Points: 9
> Player 1 made move:
> +++
move: FR
message: FR
timer: 165
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 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": 169
}
> Moving from: BI
> Life Points: 9
> Player 3 made move:
> +++
move: AS
message: AS
timer: 169
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
JM illegal
Hospital
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
JM illegal
Hospital
> End of Round: 11
> Starting Round: 12
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 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": 165
}
> Moving from: FR
> Life Points: 9
> Player 1 made move:
> +++
move: NU
message: NU
timer: 165
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 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": 172
}
> Moving from: AS
> Life Points: 9
> Player 3 made move:
> +++
move: IO
message: IO
timer: 172
> ---
--------------------------------------------------------------------------
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
SJ illegal
Location SJ 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"
BD illegal
Location BD already in trail
JM illegal
Hospital
> End of Round: 12
> Starting Round: 13
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 317Location code is MU (Munich)
running on track!
Move: {
"move": "PR",
"message": "PR",
"timer": 210
}
> Moving from: NU
> Life Points: 9
> Player 1 made move:
> +++
move: PR
message: PR
timer: 210
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 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": 182
}
> Moving from: IO
> Life Points: 9
> Player 3 made move:
> +++
move: VA
message: VA
timer: 182
> ---
--------------------------------------------------------------------------
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
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: "BD"
BE illegal
Location BE already in trail
> End of Round: 13
> Starting Round: 14
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DC?.VM. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DC?.VM. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 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 VI (Vienna)
running on track!
Move: {
"move": "VI",
"message": "VI",
"timer": 182
}
> Moving from: PR
> Life Points: 9
> Player 1 made move:
> +++
move: VI
message: VI
timer: 182
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DC?.VM. GJM.... SVI.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DC?.VM. GJM.... SVI.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 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": 214
}
> Moving from: VA
> Life Points: 9
> Player 3 made move:
> +++
move: AT
message: AT
timer: 214
> ---
--------------------------------------------------------------------------
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
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: 14
> Starting Round: 15
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DC?.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DC?.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 68 1
GameView.c: init score done
Game Score: 303Location code is ZA (Zagreb)
running on track!
Move: {
"move": "BD",
"message": "BD",
"timer": 186
}
> Moving from: VI
> Life Points: 9
> Player 1 made move:
> +++
move: BD
message: BD
timer: 186
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 100 1
current 100 1
current 14 1
current 68 1
GameView.c: init score done
Game Score: 297Location code is VA (Valona)
running on track!
Move: {
"move": "VA",
"message": "VA",
"timer": 186
}
> Moving from: AT
> Life Points: 9
> 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
BD illegal
Location BD already in trail
BD illegal
Location BD already in trail
ZA illegal
Location ZA 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: "MU"
BD illegal
Location BD already in trail
> End of Round: 15
> Starting Round: 16
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++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.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DC?T.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 100 1
current 100 1
current 14 1
current 68 1
current 100 1
GameView.c: init score done
Game Score: 296Location code is VI (Vienna)
running on track!
Move: {
"move": "ZA",
"message": "ZA",
"timer": 188
}
> Moving from: BD
> Life Points: 9
> Player 1 made move:
> +++
move: ZA
message: ZA
timer: 188
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 100 1
GameView.c: init score done
Game Score: 290Location code is SO (Sofia)
running on track!
Move: {
"move": "SA",
"message": "SA",
"timer": 194
}
> Moving from: VA
> Life Points: 9
> Player 3 made move:
> +++
move: SA
message: SA
timer: 194
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VI illegal
Location VI already in trail
ZA illegal
Location ZA 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: "D5"
> End of Round: 16
> Starting Round: 17
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++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.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 100 1
current 69 1
GameView.c: init score done
Game Score: 289Location code is VI (Vienna)
Move: {
"move": "VI",
"message": "VI",
"timer": 195
}
> Moving from: ZA
> Life Points: 7
> Player 1 made move:
> +++
move: VI
message: VI
timer: 195
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 100 1
current 69 1
GameView.c: init score done
Game Score: 283Location code is VA (Valona)
Move: {
"move": "VA",
"message": "VA",
"timer": 202
}
> Moving from: SA
> Life Points: 9
> Player 3 made move:
> +++
move: VA
message: VA
timer: 202
> ---
--------------------------------------------------------------------------
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
MU illegal
Location MU already in trail
BD illegal
Location BD already in trail
JM illegal
Hospital
MU illegal
Location MU already in trail
SZ illegal
Location SZ already in trail
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: "HI"
BD illegal
Location BD already in trail
JM illegal
Hospital
MU illegal
Location MU already in trail
> End of Round: 17
> Starting Round: 18
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 100 1
current 69 1
current 100 1
GameView.c: init score done
Game Score: 282Location code is VE (Venice)
Move: {
"move": "VE",
"message": "VE",
"timer": 204
}
> Moving from: VI
> Life Points: 5
> Player 1 made move:
> +++
move: VE
message: VE
timer: 204
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 100 1
current 69 1
current 100 1
GameView.c: init score done
Game Score: 276Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 228
}
> Moving from: VA
> Life Points: 9
> Player 3 made move:
> +++
move: SO
message: SO
timer: 228
> ---
--------------------------------------------------------------------------
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
MU illegal
Location MU already in trail
BD illegal
Location BD already in trail
JM illegal
Hospital
MU illegal
Location MU already in trail
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: "SJ"
BD illegal
Location BD already in trail
JM illegal
Hospital
MU illegal
Location MU already in trail
> End of Round: 18
> Starting Round: 19
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DC?T.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 100 1
current 69 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 275Location code is MU (Munich)
Move: {
"move": "MU",
"message": "MU",
"timer": 207
}
> Moving from: VE
> Life Points: 5
> Player 1 made move:
> +++
move: MU
message: MU
timer: 207
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 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": 209
}
> Moving from: SO
> Life Points: 9
> Player 3 made move:
> +++
move: VR
message: VR
timer: 209
> ---
--------------------------------------------------------------------------
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: "VA"
> End of Round: 19
> Starting Round: 20
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++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.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 268Location code is NU (Nuremburg)
Move: {
"move": "NU",
"message": "NU",
"timer": 212
}
> Moving from: MU
> Life Points: 3
> Player 1 made move:
> +++
move: NU
message: NU
timer: 212
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 262Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 248
}
> Moving from: VR
> Life Points: 9
> Player 3 made move:
> +++
move: SO
message: SO
timer: 248
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SJ illegal
Location SJ 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: "SO"
> End of Round: 20
> Starting Round: 21
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
current 58 1
GameView.c: init score done
Game Score: 261Location code is MU (Munich)
Move: {
"move": "MU",
"message": "MU",
"timer": 217
}
> Moving from: NU
> Life Points: 3
> Player 1 made move:
> +++
move: MU
message: MU
timer: 217
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
current 58 1
GameView.c: init score done
Game Score: 255Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 220
}
> Moving from: SO
> Life Points: 9
> Player 3 made move:
> +++
move: VR
message: VR
timer: 220
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SJ illegal
Location SJ 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
HI illegal
Already made a hide
Default Dracula Move: "BE"
> End of Round: 21
> Starting Round: 22
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
current 58 1
current 100 1
GameView.c: init score done
Game Score: 254Location code is NU (Nuremburg)
Move: {
"move": "NU",
"message": "NU",
"timer": 244
}
> Moving from: MU
> Life Points: 3
> Player 1 made move:
> +++
move: NU
message: NU
timer: 244
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
current 58 1
current 100 1
GameView.c: init score done
Game Score: 248Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 223
}
> Moving from: VR
> Life Points: 9
> Player 3 made move:
> +++
move: SO
message: SO
timer: 223
> ---
--------------------------------------------------------------------------
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
D3 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 "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 247Location code is ST (Strasbourg)
Move: {
"move": "ST",
"message": "ST",
"timer": 231
}
> Moving from: NU
> Life Points: 3
> Player 1 made move:
> +++
move: ST
message: ST
timer: 231
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DC?T... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 100 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 241Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 237
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 237
> ---
--------------------------------------------------------------------------
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
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: "BD"
BE illegal
Location BE already in trail
> End of Round: 23
> Starting Round: 24
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 240Location code is ZU (Zurich)
Move: {
"move": "ZU",
"message": "ZU",
"timer": 238
}
> Moving from: ST
> Life Points: 3
> Player 1 made move:
> +++
move: ZU
message: ZU
timer: 238
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 228Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 240
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 240
> ---
--------------------------------------------------------------------------
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
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"
KL illegal
Location KL already in trail
> End of Round: 24
> Starting Round: 25
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.0
Default Hunter Move "JM"
--------------------------------------------------------------------------
> Running player 1...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program exited with code: null
Received signal: SIGSEGV
Program Output:
Move data corrupted: ""
[SyntaxError: Unexpected end of input]
Move: {}
> Player 1 disqualified for illegal move.
> +++
> ---
Default Hunter Move "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 215Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 243
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 243
> ---
--------------------------------------------------------------------------
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
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: 25
> Starting Round: 26
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 202Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 247
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 247
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
BD illegal
Location BD already in trail
JM illegal
Hospital
KL illegal
Location KL already in trail
BE illegal
Location BE already in trail
BD illegal
Location BD already in trail
JM illegal
Hospital
KL illegal
Location KL already in trail
undefined illegal
Move undefined
HI illegal
Already made a hide
Default Dracula Move: "D2"
BE illegal
Location BE already in trail
BD illegal
Location BD already in trail
JM illegal
Hospital
KL illegal
Location KL already in trail
> End of Round: 26
> Starting Round: 27
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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: 189Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 316
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 316
> ---
--------------------------------------------------------------------------
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
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"
KL illegal
Location KL already in trail
SZ illegal
Location SZ already in trail
> End of Round: 27
> Starting Round: 28
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 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: 176Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 295
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 295
> ---
--------------------------------------------------------------------------
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
HI illegal
Already made a hide
Default Dracula Move: "SJ"
BD illegal
Location BD already in trail
JM illegal
Hospital
> End of Round: 28
> Starting Round: 29
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 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: 163Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 382
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 382
> ---
--------------------------------------------------------------------------
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: 29
> Starting Round: 30
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 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: 150Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 270
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 270
> ---
--------------------------------------------------------------------------
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: "KL"
> End of Round: 30
> Starting Round: 31
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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: 137Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 279
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 279
> ---
--------------------------------------------------------------------------
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
BD illegal
Location BD 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"
BE illegal
Location BE already in trail
> End of Round: 31
> Starting Round: 32
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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: 124Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 289
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 289
> ---
--------------------------------------------------------------------------
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
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"
BE illegal
Location BE already in trail
> End of Round: 32
> Starting Round: 33
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current 100 1
GameView.c: init score done
Game Score: 98Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 293
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 293
> ---
--------------------------------------------------------------------------
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
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"
BE illegal
Location BE already in trail
> End of Round: 33
> Starting Round: 34
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current 100 1
current 100 1
GameView.c: init score done
Game Score: 85Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 342
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 342
> ---
--------------------------------------------------------------------------
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: "VI"
KL illegal
Location KL already in trail
> End of Round: 34
> Starting Round: 35
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 72Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 305
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 305
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BD illegal
Location BD already in trail
BD illegal
Location BD 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"
BD illegal
Location BD already in trail
> End of Round: 35
> Starting Round: 36
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++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.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 59Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 316
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 316
> ---
--------------------------------------------------------------------------
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: "ZA"
> End of Round: 36
> Starting Round: 37
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: 46Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 307
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 307
> ---
--------------------------------------------------------------------------
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
MU illegal
Location MU already in trail
BD illegal
Location BD already in trail
JM illegal
Hospital
MU illegal
Location MU already in trail
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: "SZ"
BD illegal
Location BD already in trail
JM illegal
Hospital
MU illegal
Location MU already in trail
> End of Round: 37
> Starting Round: 38
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
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: 33Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 348
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 348
> ---
--------------------------------------------------------------------------
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
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: "BE"
> End of Round: 38
> Starting Round: 39
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 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: 20Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 326
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 326
> ---
--------------------------------------------------------------------------
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
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: 39
> Starting Round: 40
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 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: 7Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 335
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 335
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
JM illegal
Hospital
BE illegal
Location BE already in trail
JM illegal
Hospital
ZA illegal
Location ZA 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"
BE illegal
Location BE already in trail
JM illegal
Hospital
> End of Round: 40
> Starting Round: 41
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 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: -6Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 346
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 346
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BE illegal
Location BE already in trail
JM illegal
Hospital
BE illegal
Location BE 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
Default Dracula Move: "VA"
BE illegal
Location BE already in trail
JM illegal
Hospital
> End of Round: 41
> Starting Round: 42
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 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: -19Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 333
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 333
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SJ illegal
Location SJ 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: 42
> Starting Round: 43
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 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: -32Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 347
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 347
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SJ illegal
Location SJ 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: "AT"
> End of Round: 43
> Starting Round: 44
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 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: -45Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 350
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 350
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VA illegal
Location VA already in trail
VA illegal
Location VA 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: "IO"
VA illegal
Location VA already in trail
> End of Round: 44
> Starting Round: 45
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
GameView.c: init score done
Game Score: -58Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 358
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 358
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
AT illegal
Location AT already in trail
AT illegal
Location AT already in trail
VA illegal
Location VA 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: "BS"
AT illegal
Location AT already in trail
> End of Round: 45
> Starting Round: 46
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
GameView.c: init score done
Game Score: -84Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 366
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 366
> ---
--------------------------------------------------------------------------
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
HI illegal
Already made a hide
Default Dracula Move: "D2"
> End of Round: 46
> Starting Round: 47
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
GameView.c: init score done
Game Score: -97Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 384
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 384
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
AT illegal
Location AT already in trail
AT illegal
Location AT already in trail
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
Already made a hide
Default Dracula Move: "SA"
AT illegal
Location AT already in trail
> End of Round: 47
> Starting Round: 48
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: -110Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 375
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 375
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
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: "HI"
> End of Round: 48
> Starting Round: 49
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: -123Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 376
}
> Moving from: SO
> Life Points: 7
> Player 3 made move:
> +++
move: VR
message: VR
timer: 376
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
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
HI illegal
Already made a hide
Default Dracula Move: "SO"
> End of Round: 49
> Starting Round: 50
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: -136Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 383
}
> Moving from: VR
> Life Points: 7
> Player 3 made move:
> +++
move: SO
message: SO
timer: 383
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SA illegal
Location SA 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: "SJ"
> End of Round: 50
> Starting Round: 51
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
GameView.c: init score done
Game Score: -149Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 433
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 433
> ---
--------------------------------------------------------------------------
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
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: "VA"
> End of Round: 51
> Starting Round: 52
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: -162Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 396
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 396
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SA illegal
Location SA already in trail
SJ illegal
Location SJ already in trail
SO illegal
Location SO already in trail
HI illegal
Already made a hide
Default Dracula Move: "D5"
> End of Round: 52
> Starting Round: 53
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: -175Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 438
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 438
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
SO illegal
Location SO already in trail
VA illegal
Location VA already in trail
SO illegal
Location SO already in trail
VA illegal
Location VA 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: "IO"
SO illegal
Location SO already in trail
VA illegal
Location VA already in trail
> End of Round: 53
> Starting Round: 54
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
GameView.c: init score done
Game Score: -188Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 406
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 406
> ---
--------------------------------------------------------------------------
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
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: "TS"
> End of Round: 54
> Starting Round: 55
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
GameView.c: init score done
Game Score: -201Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 471
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 471
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
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
HI illegal
Cannot hide at sea
Default Dracula Move: "RO"
> End of Round: 55
> Starting Round: 56
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: -214Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 422
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 422
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
TS illegal
Location TS 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: "NP"
> End of Round: 56
> Starting Round: 57
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++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.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: -227Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 425
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 425
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
RO illegal
Location RO already in trail
TS illegal
Location TS 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: "BI"
> End of Round: 57
> Starting Round: 58
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: -240Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 432
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 432
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NP illegal
Location NP already in trail
RO illegal
Location RO already in trail
NP illegal
Location NP already in trail
RO illegal
Location RO 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: "AS"
NP illegal
Location NP already in trail
RO illegal
Location RO already in trail
> End of Round: 58
> Starting Round: 59
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
GameView.c: init score done
Game Score: -266Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 437
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 437
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BI illegal
Location BI already in trail
BI illegal
Location BI 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"
BI illegal
Location BI already in trail
> End of Round: 59
> Starting Round: 60
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
GameView.c: init score done
Game Score: -279Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 446
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 446
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
AS illegal
Location AS 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: "D2"
> End of Round: 60
> Starting Round: 61
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
GameView.c: init score done
Game Score: -292Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 490
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 490
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
BI illegal
Location BI already in trail
BI illegal
Location BI 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
HI illegal
Cannot hide at sea
Default Dracula Move: "VE"
BI illegal
Location BI already in trail
> End of Round: 61
> Starting Round: 62
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: -305Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 458
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 458
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
AS illegal
Location AS 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: "MI"
> End of Round: 62
> Starting Round: 63
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: -318Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 460
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 460
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
VE illegal
Location VE 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: 63
> Starting Round: 64
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: -331Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 469
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 469
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MI illegal
Location MI 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: 64
> Starting Round: 65
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
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: -344Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 478
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 478
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MI illegal
Location MI 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: "GO"
> End of Round: 65
> Starting Round: 66
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
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: -357Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 471
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 471
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
MR illegal
Location MR already in trail
MI illegal
Location MI already in trail
VE illegal
Location VE already in trail
HI illegal
Already made a hide
Default Dracula Move: "TS"
> End of Round: 66
> Starting Round: 67
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
GameView.c: init score done
Game Score: -370Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 524
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 524
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GO illegal
Location GO 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: "NP"
> End of Round: 67
> Starting Round: 68
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 100 1
GameView.c: init score done
Game Score: -383Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 493
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 493
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
TS illegal
Location TS 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: "RO"
> End of Round: 68
> Starting Round: 69
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 100 1
current 100 1
GameView.c: init score done
Game Score: -396Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 495
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 495
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
NP illegal
Location NP already in trail
TS illegal
Location TS 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: "FL"
> End of Round: 69
> Starting Round: 70
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
GameView.c: init score done
Game Score: -409Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 507
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 507
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
GO illegal
Location GO already in trail
RO illegal
Location RO already in trail
GO illegal
Location GO already in trail
RO illegal
Location RO 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: "D1"
GO illegal
Location GO already in trail
RO illegal
Location RO already in trail
> End of Round: 70
> Starting Round: 71
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
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: -422Location code is VR (Varna)
Move: {
"move": "VR",
"message": "VR",
"timer": 509
}
> Moving from: SO
> Life Points: 1
> Player 3 made move:
> +++
move: VR
message: VR
timer: 509
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
RO illegal
Location RO 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: 71
> Starting Round: 72
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.V. GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.V. GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 58 1
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 101 2
drac at sea
current 101 2
drac at sea
current 101 2
drac at sea
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
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: -448Location code is SO (Sofia)
Move: {
"move": "SO",
"message": "SO",
"timer": 518
}
> Moving from: VR
> Life Points: 1
> Player 3 made move:
> +++
move: SO
message: SO
timer: 518
> ---
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.4
generating default dracula move
RO illegal
Location RO 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: "VE"
> End of Round: 72
> Starting Round: 73
--------------------------------------------------------------------------
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 "ZU"
--------------------------------------------------------------------------
Player is currently disqualified. Making a move on their behalf.2
Default Hunter Move "ZU"
--------------------------------------------------------------------------
> Running player 3...
/tmp/dryrun31449/hunter
Running with input: {
"pastPlays": "GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.V. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU....",
"messages": [
"CD",
"LS",
"CA",
"GR",
"AS",
"GA",
"SN",
"MA",
"AL",
"CD",
"KL",
"SR",
"SR",
"BA",
"+++Whoops! Here Comes The Cheese!+++",
"CD",
"BO",
"TO",
"TO",
"+++Whoops! Here Comes The Cheese!+++",
"GA",
"NA",
"CF",
"MR",
"+++MELON MELON MELON+++",
"KL",
"LE",
"PA",
"GO",
"+++Mr. Jelly! Mr. Jelly!+++",
"CD",
"BU",
"GE",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"AM",
"ST",
"FL",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"CO",
"ZU",
"RO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"HA",
"+++Whoops! Here Comes The Cheese!+++",
"NP",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"LI",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"BI",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"FR",
"+++Out Of Cheese Error+++",
"AS",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"NU",
"+++Mr. Jelly! Mr. Jelly!+++",
"IO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"PR",
"+++Mr. Jelly! Mr. Jelly!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VI",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"AT",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"BD",
"+++Whoops! Here Comes The Cheese!+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"ZA",
"+++Oneoneoneoneoneoneone+++",
"SA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"VI",
"+++Oneoneoneoneoneoneone+++",
"VA",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VE",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"MU",
"+++Out Of Cheese Error+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"NU",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"MU",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"NU",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"ST",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"ZU",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++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+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Out Of Cheese Error+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Whoops! Here Comes The Cheese!+++",
"SO",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Out Of Cheese Error+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++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+++",
"SO",
"+++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!+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"SO",
"+++Out Of Cheese Error+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Oneoneoneoneoneoneone+++",
"VR",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"+++Out Of Cheese Error+++",
"VR",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++MELON MELON MELON+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++MELON MELON MELON+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++MELON MELON MELON+++",
"VR",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Whoops! Here Comes The Cheese!+++",
"+++Out Of Cheese Error+++",
"+++Mr. Jelly! Mr. Jelly!+++",
"+++Out Of Cheese Error+++",
"VR",
"+++MELON MELON MELON+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++MELON MELON MELON+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"VR",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++MELON MELON MELON+++",
"+++Whoops! Here Comes The Cheese!+++",
"+++Oneoneoneoneoneoneone+++",
"SO",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++",
"+++Oneoneoneoneoneoneone+++",
"+++Divide By Cucumber Error. Please Reinstall Universe And Reboot+++",
"+++Error At Address: 14, Treacle Mine Road, Ankh-Morpork+++"
]
}
Program Output: GameView.c: init score 'GCD.... SLS.... HCA.... MGR.... DS?.... GGA.... SSN.... HMA.... MAL.... DCDT... GKL.... SSR.... HSR.... MBA.... DD1T... GCDTTD. SBO.... HTO.... MTO.... DHIT... GGA.... SNA.... HCF.... MMR.... DGAT... GKL.... SLE.... HPA.... MGO.... DKLT... GCDT... SBU.... HGE.... MVE.... DC?T... GJM.... SAM.... HST.... MFL.... DC?T... GJM.... SCO.... HZU.... MRO.... DD3T... GJM.... SHA.... HZU.... MNP.... DC?T... GJM.... SLI.... HZU.... MBI.... DC?T.M. GJM.... SFR.... HZU.... MAS.... DZAT.M. GJM.... SNU.... HZU.... MIO.... DC?T.M. GJM.... SPR.... HZU.... MVA.... DBD.VM. GJM.... SVI.... HZU.... MAT.... DVIT.M. GJM.... SBDV... HZU.... MVA.... DMUT.M. GJM.... SZAT... HZU.... MSA.... DD5T.M. GJM.... SVIT... HZU.... MVA.... DHIT... GJM.... SVE.... HZU.... MSO.... DC?T.M. GJM.... SMUT... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSO.... DSOT... GJM.... SMU.... HZU.... MVR.... DC?T... GJM.... SNU.... HZU.... MSOT... DC?T.M. GJM.... SST.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD2.V.. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DHIT.M. GJM.... SZU.... HZU.... MSO.... DD1T.V. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?.VM. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DS?..V. GJM.... SZU.... HZU.... MSO.... DD2..M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT.M. GJM.... SZU.... HZU.... MVR.... DSOT.M. GJM.... SZU.... HZU.... MSOTD.. DC?T... GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DD5.V.. GJM.... SZU.... HZU.... MVR.... DS?..M. GJM.... SZU.... HZU.... MSO.... DS?..M. GJM.... SZU.... HZU.... MVR.... DC?T... GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DS?..V. GJM.... SZU.... HZU.... MVR.... DS?.... GJM.... SZU.... HZU.... MSO.... DD2.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DHIT... GJM.... SZU.... HZU.... MVR.... DC?.V.. GJM.... SZU.... HZU.... MSO.... DS?.... GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DC?T.M. GJM.... SZU.... HZU.... MVR.... DC?T.M. GJM.... SZU.... HZU.... MSO.... DD1T.M. GJM.... SZU.... HZU.... MVR.... DC?T.V. GJM.... SZU.... HZU.... MSO.... DC?T... GJM.... SZU.... HZU....'
current 101 2
drac at sea
current 17 1
current 17 1
current 17 1
current 26 1
current 34 1
current 100 1
current 100 1
current 34 1
current 100 1
current 100 1
current 69 1
current 100 1
current 14 1
current 68 1
current 45 1
current 69 1
current 69 1
current 100 1
current 100 1
current 58 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
current -1 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 100 1
current 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment