ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/config.h
(Generate patch)

Comparing deliantra/server/include/config.h (file contents):
Revision 1.2 by root, Fri Feb 3 07:25:25 2006 UTC vs.
Revision 1.5 by root, Tue Mar 7 13:44:43 2006 UTC

1/* 1/*
2 * static char *rcsid_config_h = 2 * static char *rcsid_config_h =
3 * "$Id: config.h,v 1.2 2006/02/03 07:25:25 root Exp $"; 3 * "$Id: config.h,v 1.5 2006/03/07 13:44:43 root Exp $";
4 */ 4 */
5 5
6/* 6/*
7 CrossFire, A Multiplayer game for X-windows 7 CrossFire, A Multiplayer game for X-windows
8 8
74 * MANY_CORES - generate core dumps on gross errors instead of continuing? 74 * MANY_CORES - generate core dumps on gross errors instead of continuing?
75 * PARTY_KILL_LOG - stores party kill information 75 * PARTY_KILL_LOG - stores party kill information
76 * WATCHDOG - allows use of an external watchdog program 76 * WATCHDOG - allows use of an external watchdog program
77 * 77 *
78 ***********************************************************************/ 78 ***********************************************************************/
79
80/* Use a very easy, non-challenging server?
81 * Defining the COZY_SERVER will make the server much less challenging:
82 * no stats loss on death, much less experience loss, and party members
83 * are treated by pet monsters as the owner itself when moving "through" them.
84 */
85#define COZY_SERVER 1
79 86
80/* Use balanced stat loss code? 87/* Use balanced stat loss code?
81 * This code is a little more merciful with repeated stat loss at lower 88 * This code is a little more merciful with repeated stat loss at lower
82 * levels. Basically, the more stats you have lost, the less likely that 89 * levels. Basically, the more stats you have lost, the less likely that
83 * you will lose more. Additionally, lower level characters are shown 90 * you will lose more. Additionally, lower level characters are shown
646 * thus requiring that the server be setuid/setgid, and more generous 653 * thus requiring that the server be setuid/setgid, and more generous
647 * permisisons needed. 654 * permisisons needed.
648 * SAVE_MODE is permissions for the files, SAVE_DIR_MODE is permission 655 * SAVE_MODE is permissions for the files, SAVE_DIR_MODE is permission
649 * for nay directories created. 656 * for nay directories created.
650 */ 657 */
658/* IMPORTANT: there is a race during saving, where the umask is being applied */
651#define SAVE_MODE 0660 659#define SAVE_MODE 0660
652#define SAVE_DIR_MODE 0770 660#define SAVE_DIR_MODE 0770
653 661
654/* NOTE ON SAVE_INTERVAL and AUTOSAVE: Only one of these two really 662/* NOTE ON SAVE_INTERVAL and AUTOSAVE: Only one of these two really
655 * needs to be selected. You can set both, and things will work fine, 663 * needs to be selected. You can set both, and things will work fine,
665 * environment, you may want to set this to a higher value, so that 673 * environment, you may want to set this to a higher value, so that
666 * you are not spending too much time saving the characters. 674 * you are not spending too much time saving the characters.
667 * This option should now work (Crossfire 0.90.5) 675 * This option should now work (Crossfire 0.90.5)
668 */ 676 */
669 677
670#define SAVE_INTERVAL 60 678//#define SAVE_INTERVAL 60
671 679
672/* 680/*
673 * AUTOSAVE saves the player every AUTOSAVE ticks. A value of 681 * AUTOSAVE saves the player every AUTOSAVE ticks. A value of
674 * 5000 with MAX_TIME set at 120,000 means that the player will be 682 * 5000 with MAX_TIME set at 120,000 means that the player will be
675 * saved every 10 minutes. Some effort should probably be made to 683 * saved every 10 minutes. Some effort should probably be made to
686 * the crash has trashed the characters too. Define NO_EMERGENCY_SAVE 694 * the crash has trashed the characters too. Define NO_EMERGENCY_SAVE
687 * to disable emergency saves. This actually does 695 * to disable emergency saves. This actually does
688 * prevent emergency saves now (Version 0.90.5). 696 * prevent emergency saves now (Version 0.90.5).
689 */ 697 */
690 698
691#define NO_EMERGENCY_SAVE 699//#define NO_EMERGENCY_SAVE
692 700
693/* By selecting the following, whenever a player does a backup save (with 701/* By selecting the following, whenever a player does a backup save (with
694 * the 'save command), the player will be saved at home (EMERGENCY_MAP_* 702 * the 'save command), the player will be saved at home (EMERGENCY_MAP_*
695 * information that is specified later). IF this is not set, the player 703 * information that is specified later). IF this is not set, the player
696 * will be saved at his present location. 704 * will be saved at his present location.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines