/*
* NAME: dgd.cf
* DESCRIPTION: global parameters for DGD mud-driver
*/
telnet_port = 5000; /* telnet port number >= 1024 */
binary_port = 5999; /* binary port number */
directory = "/home/norse/MudOSa4DGD/mudlib/";
/* base directory (MUST be absolute) */
users = 255; /* max # of users <= 255 */
editors = 255; /* max # of editor sessions */
ed_tmpfile = "../tmp/ed"; /* proto editor tmpfile */
swap_file = "../tmp/swap"; /* swap file */
swap_size = 65535; /* # sectors in swap file */
cache_size = 256; /* # sectors in swap cache */
sector_size = 1024; /* swap sector size */
swap_fragment = 64; /* fragment to swap out */
static_chunk = 31744; /* static memory chunk */
dynamic_chunk = 523264; /* dynamic memory chunk */
dump_file = "../data/dgd.db";
/* state dump file*/
typechecking = 1; /* global typechecking (ON/OFF) */
include_file = "/dgd/lib/include/auto.h";
/* standard include file */
include_dirs = ({ "/dgd/lib/include/dgd/", "/dgd/lib/include", "/std/include" });
/* directories to search */
auto_object = "/dgd/lib/sys/auto"; /* auto inherited object */
driver_object = "/dgd/lib/sys/driver";/* driver object */
create = "__create"; /* name of create() function */
array_size = 32000; /* max array size */
objects = 65000; /* max # of objects <= 65535 */
call_outs = 100; /* max # of forked tasks <= 65535 */