ldmud-3.2.9/doc/
ldmud-3.2.9/doc/efun/
ldmud-3.2.9/mud/
ldmud-3.2.9/mud/heaven7/
ldmud-3.2.9/mud/heaven7/lib/
ldmud-3.2.9/mud/lp-245/
ldmud-3.2.9/mud/lp-245/banish/
ldmud-3.2.9/mud/lp-245/doc/
ldmud-3.2.9/mud/lp-245/doc/examples/
ldmud-3.2.9/mud/lp-245/doc/sefun/
ldmud-3.2.9/mud/lp-245/log/
ldmud-3.2.9/mud/lp-245/obj/Go/
ldmud-3.2.9/mud/lp-245/players/lars/
ldmud-3.2.9/mud/lp-245/room/death/
ldmud-3.2.9/mud/lp-245/room/maze1/
ldmud-3.2.9/mud/lp-245/room/sub/
ldmud-3.2.9/mud/lp-245/secure/
ldmud-3.2.9/mud/morgengrauen/
ldmud-3.2.9/mud/morgengrauen/lib/
ldmud-3.2.9/mud/sticklib/
ldmud-3.2.9/mud/sticklib/src/
ldmud-3.2.9/mudlib/uni-crasher/
ldmud-3.2.9/pkg/
ldmud-3.2.9/pkg/debugger/
ldmud-3.2.9/pkg/diff/
ldmud-3.2.9/pkg/misc/
ldmud-3.2.9/src/autoconf/
ldmud-3.2.9/src/bugs/
ldmud-3.2.9/src/bugs/MudCompress/
ldmud-3.2.9/src/bugs/b-020916-files/
ldmud-3.2.9/src/bugs/doomdark/
ldmud-3.2.9/src/bugs/ferrycode/ferry/
ldmud-3.2.9/src/bugs/ferrycode/obj/
ldmud-3.2.9/src/bugs/psql/
ldmud-3.2.9/src/done/
ldmud-3.2.9/src/done/order_alist/
ldmud-3.2.9/src/done/order_alist/obj/
ldmud-3.2.9/src/done/order_alist/room/
ldmud-3.2.9/src/gcc/
ldmud-3.2.9/src/gcc/2.7.0/
ldmud-3.2.9/src/gcc/2.7.1/
ldmud-3.2.9/src/hosts/
ldmud-3.2.9/src/hosts/GnuWin32/
ldmud-3.2.9/src/hosts/amiga/NetIncl/
ldmud-3.2.9/src/hosts/amiga/NetIncl/netinet/
ldmud-3.2.9/src/hosts/amiga/NetIncl/sys/
ldmud-3.2.9/src/hosts/i386/
ldmud-3.2.9/src/hosts/msdos/byacc/
ldmud-3.2.9/src/hosts/msdos/doc/
ldmud-3.2.9/src/hosts/os2/
ldmud-3.2.9/src/hosts/win32/
ldmud-3.2.9/src/util/
ldmud-3.2.9/src/util/erq/
ldmud-3.2.9/src/util/indent/hosts/next/
ldmud-3.2.9/src/util/xerq/
ldmud-3.2.9/src/util/xerq/lpc/
ldmud-3.2.9/src/util/xerq/lpc/www/
/*
 * This file is used to tune the game
 * The game should be "easy" in the beginning, because there are not
 * enough monsters and puzzles.
 * When wizards start to create new rooms, an inflation will be noted
 * (it is easier to become wizard).
 */

/*
 * This value is used to tune the cost to advance a stat in a player.
 */

#define STAT_COST 10

/*
 *
 * If you change this value, remove adv_guild.i (if you have it), so that
 * the new value will be used at restart of the game.
 *
 * EXP_COST: How many experience points you get for 1000 gold coins in
 * avdenturers guild.
 *	2000: For an easy start.
 *	1000: Normal.
 *	500:  Extremly inflated game.
 *
 * Big LPmuds usually have several guilds made by other wizards. It is
 * very important that they call query_cost() in adv_guild.c to determine
 * what the cost is to advance a player. All guilds should have the same
 * cost for advancing.
 */

#define EXP_COST	600

/*
 * When there are many quests in the game, it is not good to force
 * the players to solve all of them. FREE_QUESTS defines how many of
 * them that you don't have to solve. If you change this value, remove
 * quert_room.i (if you have one), so that the new value will be used
 * when the game is restarted next time.
 *
 */
/*
 * Recommended values:
 *
 * Number of quests		FREE_QUESTS
 * 1 (default)			0
 * 4				0
 * 8				2
 * 16				4
 * 24				6
 */

#define FREE_QUESTS	3