version 1.59 | | version 1.60 |
---|
| | |
/* | | /* |
* static char *rcsid_c_wiz_c = | | * static char *rcsid_c_wiz_c = |
* "$Id: c_wiz.c,v 1.59 2005/03/20 06:22:59 mwedel Exp $"; | | * "$Id: c_wiz.c,v 1.60 2005/03/22 01:54:00 majorwoo Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
"%s has entered the game.",op->name); | | "%s has entered the game.",op->name); |
if ( !silent_dm ) | | if ( !silent_dm ) |
{ | | { |
| | /*slight delay to make it look like a person doing it*/ |
| | sleep (1); |
new_draw_info(NDI_UNIQUE | NDI_ALL | NDI_LT_GREEN, 1, NULL, | | new_draw_info(NDI_UNIQUE | NDI_ALL | NDI_LT_GREEN, 1, NULL, |
"The Dungeon Master has arrived!"); | | "The Dungeon Master has arrived!"); |
} | | } |
| | |
} | | } |
new_draw_info_format(NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL, | | new_draw_info_format(NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL, |
"%s leaves the game.",op->name); | | "%s leaves the game.",op->name); |
| | /*slight delay to make it look like a person doing it*/ |
| | sleep (1); |
new_draw_info_format(NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL,
| | new_draw_info_format(NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, NULL,
|
"%s left the game.",op->name);
| | "%s left the game.",op->name);
|
} | | } |