version 1.67 | | version 1.68 |
---|
| | |
/* | | /* |
* static char *rcsid_init_c = | | * static char *rcsid_init_c = |
* "$Id: init.c,v 1.67 2005/09/04 16:58:12 akirschbaum Exp $"; | | * "$Id: init.c,v 1.68 2005/10/15 07:07:31 qal21 Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
void set_regions(char *path) { settings.regions=path; } | | void set_regions(char *path) { settings.regions=path; } |
void set_treasures(char *path) { settings.treasures=path; } | | void set_treasures(char *path) { settings.treasures=path; } |
void set_uniquedir(char *path) { settings.uniquedir=path; } | | void set_uniquedir(char *path) { settings.uniquedir=path; } |
| | void set_templatedir(char *path) { settings.templatedir=path; } |
void set_playerdir(char *path) { settings.playerdir=path; } | | void set_playerdir(char *path) { settings.playerdir=path; } |
void set_tmpdir(char *path) { settings.tmpdir=path; } | | void set_tmpdir(char *path) { settings.tmpdir=path; } |
| | |
| | |
{"-playerdir", 1, 1, set_playerdir}, | | {"-playerdir", 1, 1, set_playerdir}, |
{"-treasures", 1, 1, set_treasures}, | | {"-treasures", 1, 1, set_treasures}, |
{"-uniquedir", 1, 1, set_uniquedir}, | | {"-uniquedir", 1, 1, set_uniquedir}, |
| | {"-templatedir", 1, 1, set_templatedir}, |
{"-tmpdir", 1, 1, set_tmpdir}, | | {"-tmpdir", 1, 1, set_tmpdir}, |
{"-log", 1, 1, set_logfile}, | | {"-log", 1, 1, set_logfile}, |
| | |
| | |
printf(" -arch Sets the archetype file to use.\n"); | | printf(" -arch Sets the archetype file to use.\n"); |
printf(" -regions Sets the regions file to use.\n"); | | printf(" -regions Sets the regions file to use.\n"); |
printf(" -playerdir Sets the directory for the player files.\n"); | | printf(" -playerdir Sets the directory for the player files.\n"); |
| | printf(" -templatedir Sets the directory for template generate maps.\n"); |
printf(" -treasures Sets the treasures file to use.\n"); | | printf(" -treasures Sets the treasures file to use.\n"); |
printf(" -uniquedir Sets the unique items/maps directory.\n"); | | printf(" -uniquedir Sets the unique items/maps directory.\n"); |
printf(" -tmpdir Sets the directory for temporary files (mostly maps.)\n"); | | printf(" -tmpdir Sets the directory for temporary files (mostly maps.)\n"); |