-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.txt
52 lines (35 loc) · 1.06 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# zank
Text-based adventure game; can you find enough magic rings and
incriminating documents to indict and retire all the politicians before
your HP runs out?
zank home page:<https://github.com/theimpossibleastronaut/zank/wiki>
screenshots:<https://github.com/theimpossibleastronaut/zank/tree/master/screenshots>
## Dependencies:
* gcc
* cmake
* libncurses-dev
* libjson-c-dev
## Compiling
### Linux and Mac
mkdir build
cd build
cmake ../source
make
### Windows
mkdir build
cd build
cmake -G "MinGW Makefiles" ..\source
mingw32-make
The zank executable will be output to your build directory. To run, use
./zank
zank doesn't have need to be installed because it can be run as a
stand-alone binary. At present, all the data is built into the program.
e,w,n,s or cursor keys = direction keys
h = display in-game help
i = show inventory
m = display map
q = quit
Inspiration for zank came from BBS Door games such as Zork, Legend of
the Red Dragon (L.O.R.D.), and Lunatix.
License: GNU GPL 3.0
This file last updated 2018-11-23