blob: cbd7c0aa3f027f48829368dc553d872b32a68734 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef _RRCONFIGS_
#define _RRCONFIGS_
/**
* rAthena configuration file (http://rathena.org)
* For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/
**/
/**
* Max Refine available to your server
* Raising this limit requires edits to /db/refine_db.txt
**/
#define MAX_REFINE 20
/**
* Max number of items on @autolootid list
**/
#define AUTOLOOTITEM_SIZE 10
//Uncomment to enable the Cell Stack Limit mod.
//It's only config is the battle_config cell_stack_limit.
//Only chars affected are those defined in BL_CHAR (mobs and players currently)
//#define CELL_NOSTACK
//Uncomment to enable circular area checks.
//By default, all range checks in Aegis are of Square shapes, so a weapon range
// of 10 allows you to attack from anywhere within a 21x21 area.
//Enabling this changes such checks to circular checks, which is more realistic,
// but is not the official behaviour.
//#define CIRCULAR_AREA
/**
* No settings past this point
**/
#include "./Renewal.h"
#include "./Secure.h"
#include "./Skills/General.h"
/**
* Constants come last; so they process anything that could've been modified in early includes
**/
#include "./Data/Const.h"
/**
* End of File
**/
#endif
|