* master: (354 commits) Add missing protos a warning bout lc_error Add S_poisoncloud to Guidebooks ... Conflicts: .gitattributes dat/.gitattributes doc/.gitattributes doc/Guidebook.mn include/config.h include/decl.h include/extern.h include/flag.h include/hack.h include/ntconf.h include/sys.h include/wceconf.h src/apply.c src/attrib.c src/bones.c src/botl.c src/dbridge.c src/dig.c src/do.c src/do_name.c src/dog.c src/dungeon.c src/eat.c src/end.c src/files.c src/fountain.c src/hack.c src/invent.c src/light.c src/makemon.c src/mhitu.c src/mklev.c src/mkmaze.c src/mkobj.c src/mkroom.c src/mon.c src/objnam.c src/options.c src/pager.c src/pickup.c src/potion.c src/pray.c src/questpgr.c src/read.c src/restore.c src/rnd.c src/role.c src/rumors.c src/save.c src/shk.c src/sit.c src/sp_lev.c src/sys.c src/teleport.c src/trap.c src/u_init.c src/uhitm.c src/wield.c src/worn.c src/zap.c sys/amiga/.gitattributes sys/mac/.gitattributes sys/msdos/.gitattributes sys/msdos/pctiles.c sys/msdos/vidvga.c sys/os2/.gitattributes sys/share/.gitattributes sys/share/pcmain.c sys/unix/.gitattributes sys/unix/hints/.gitattributes sys/unix/sysconf sys/unix/unixmain.c sys/vms/.gitattributes sys/wince/.gitattributes sys/wince/mhstatus.c sys/winnt/.gitattributes sys/winnt/Makefile.msc sys/winnt/nhsetup.bat util/lev_comp.l util/makedefs.c win/X11/winmenu.c win/X11/winstat.c win/gnome/gnstatus.c win/share/tilemap.c win/tty/termcap.c win/tty/topl.c win/tty/wintty.c
70 lines
2.4 KiB
Plaintext
70 lines
2.4 KiB
Plaintext
#
|
|
# NetHack 3.5 sysconf $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$
|
|
# NetHack 3.5 sysconf $Date: 2012/01/27 20:15:31 $ $Revision: 1.6 $
|
|
#
|
|
# Sample sysconf file.
|
|
# The sysconf file is only used if NetHack is compiled with SYSCF defined.
|
|
# This file uses the same syntax as nethack.cf.
|
|
|
|
# Which users can use WIZARD (debugging) mode (the -D flag).
|
|
# A value of * allows anyone to enter debugging mode.
|
|
WIZARDS=root games
|
|
|
|
# Users allowed to use the ! (shell escape) command or to suspend the game.
|
|
# Uses the same syntax as the WIZARDS option above.
|
|
#SHELLERS=
|
|
|
|
# Show debugging information originating from these source files.
|
|
# Use '*' for all, or list source files separated by spaces.
|
|
# Only available if game has been compiled with DEBUG.
|
|
#DEBUGFILES=*
|
|
|
|
# Users allowed to use #exploremode. Same syntax as WIZARDS above.
|
|
EXPLORERS=*
|
|
|
|
# Show debugging information originating from these source files.
|
|
# Use '*' for all, or list source files separated by spaces.
|
|
# Only available if game has been compiled with DEBUG.
|
|
#DEBUGFILES=*
|
|
|
|
# Limit the number of simultaneous games (see also nethack.sh).
|
|
MAXPLAYERS=10
|
|
|
|
# If not null, added to string "To get local support, " in the support
|
|
# information help.
|
|
#SUPPORT=call Izchak at extension 42.
|
|
|
|
# If not null, displayed at the end of a panic-save sequence.
|
|
#RECOVER=Run the recover program.
|
|
|
|
# Uncomment the next line to disable the SEDUCE option.
|
|
#SEDUCE=0
|
|
|
|
# Record (high score) file options.
|
|
# CAUTION: changing these after people have started playing games can
|
|
# lead to lost high scores!
|
|
# Maximum entries for one person.
|
|
#PERSMAX=10
|
|
# Maximum entries in the record file.
|
|
#ENTRYMAX=100
|
|
# Minimum points to get an entry.
|
|
#POINTSMIN=1
|
|
# Determine identity of "person" in the score file with name (0) or
|
|
# numeric (1) user id.
|
|
#PERS_IS_UID=1
|
|
|
|
# Maximum number of score file entries to use for random statue names
|
|
#MAX_STATUENAME_RANK=10
|
|
|
|
# Try to get more info in case of a program bug or crash. Using GDB can
|
|
# get more information and works on more systems but requires gdb be available;
|
|
# using LIBC only works if NetHack is linked with a libc that supports the
|
|
# backtrace(3) API. Both require certain compilation options. See
|
|
# src/end.c and sys/unix/hints/* for more information.
|
|
GDBPATH=/usr/bin/gdb
|
|
GREPPATH=/bin/grep
|
|
# Values are priorities: 0 - do not use this method, 1 - low priority,
|
|
# 2 - high priority. Non-zero priority methods are tried in order.
|
|
PANICTRACE_GDB=1
|
|
PANICTRACE_LIBC=2
|