Changeset 24 for src/common
- Timestamp:
- 07/07/08 22:48:26 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
src/common/mmo.h
r23 r24 11 11 12 12 //Remove/Comment this line to disable sc_data saving. [Skotlex] 13 #define ENABLE_SC_SAVING 13 #define ENABLE_SC_SAVING 14 14 //Remove/Comment this line to disable server-side hot-key saving support [Skotlex] 15 15 //Note that newer clients no longer save hotkeys in the registry! … … 31 31 #define MAX_FAME 1000000000 32 32 #define MAX_CART 100 33 #define MAX_SKILL 1 600 //1600 now, for necromancer skills overstepping bounds.33 #define MAX_SKILL 1100 // Bumped to 1100 for new quest skills, will need to further increase one day... [DracoRPG] 34 34 #define GLOBAL_REG_NUM 96 35 35 #define ACCOUNT_REG_NUM 64 … … 117 117 IT_AMMO, //10 118 118 IT_DELAYCONSUME,//11 119 IT_MAX 119 IT_MAX 120 120 }; 121 121 … … 309 309 int buyer_id; 310 310 char buyer_name[NAME_LENGTH]; 311 311 312 312 struct item item; 313 313 // This data is required for searching, as itemdb is not read by char server … … 526 526 JOB_XMAS, 527 527 JOB_SUMMER, 528 JOB_ADEPT = 30, // [Brain] 528 JOB_ADEPT = 30, // [Brain] 529 529 JOB_NECROMANCER, // [Brain] 530 JOB_WARLOCK, 531 530 JOB_WARLOCK, // Warlock [Brain] 532 531 JOB_MAX_BASIC, 533 532 … … 583 582 JOB_STAR_GLADIATOR2, 584 583 JOB_SOUL_LINKER, 585 586 584 JOB_MAX, 587 585 };