blob: a37959675af466594537800b1848310ed6357806 (
plain) (
tree)
|
|
#ifndef _RRCONFIGS_RE_
#define _RRCONFIGS_RE_
/**
* Ragnarok Resources Configuration File (http://ro-resources.net)
* The following settings are applied upon compiling the program,
* therefore any settings you disable will not even be added to the program
* making these settings the most performance-effiecient possible
**/
/**
* @INFO: This file holds general-purpose renewal settings, for class-specific ones check /src/map/config/Skills folder
**/
/**
* Game Server Mode
* @values: 1 or 0
* 1 : renewal support, such as renewal-exclusive formulas
* -> Note some features may be enabled/disabled at this file despite this setting being ON
* 0 : renewal support disabled, use original formulas
**/
#define REMODE 1
/**
* Renewal Cast Time
* @values: 1 (enabled) or 0 (disabled)
* 1 : Cast Time is decreased by DEX*2+INT, 20% of the cast time is not reduced by stats,
* - for example, on a skill whose cast time is 10s, only 8s may be reduced. other 2s are
* - part of a "fixed cast time" that is only reduced by special items and skills (such as
* - Arch Bishop's Sacrament skill).
* 0 : the old cast time method, influenced by dex, items and skills.
**/
#define RECASTING 1
/**
* Renewal Cast Time : Variable-Free
* - Value required for no variable cast time with stats.
* - Formula: (casterDex x 2) + (casterInt)
* Default: 530
**/
#define RECASTING_VMIN 530
/**
* Renewal Enchant Deadly Poison Change
* - In RE EDP no longer increases final damage by 400%.
* - it increases your weapon atk and your stat atk
* - it doesn't affect grimtooth
**/
#define RE_EDP 1
/**
* End of File
**/
#endif
|