diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-25 14:44:14 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-10-25 14:44:14 +0000 |
commit | bbb2671566dada63d7a34616f93e66b18d91ef44 (patch) | |
tree | 76771200cd114f2d1cf01615879c3348c9c0a47b /src/map/battle.h | |
parent | 25e3d584866b386b37232320457e6cf1bdcf3d87 (diff) | |
download | hercules-bbb2671566dada63d7a34616f93e66b18d91ef44.tar.gz hercules-bbb2671566dada63d7a34616f93e66b18d91ef44.tar.bz2 hercules-bbb2671566dada63d7a34616f93e66b18d91ef44.tar.xz hercules-bbb2671566dada63d7a34616f93e66b18d91ef44.zip |
- Made the exp bonus settings be adjustable:
- exp_bonus_attacker: Indicates how much additional exp a mob gives per additional attacker (eg: 10 -> +10%*attacker)
- exp_bonus_max_attacker: Indicates at which number of attackers the bonus is capped (eg: 5 -> 5 attackers, so a mob yield the same exp whether 5 or 10 people attack it)
- Changed the way the party_even_share_bonus setting works. It now uses a simple linear bonus increase (eg: 10 -> +10%*party member)
- The defaults are as explained by Tharis: +25%/attacker, capped at 12 attackers, no party bonus.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9067 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.h')
-rw-r--r-- | src/map/battle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/battle.h b/src/map/battle.h index be3a67c90..b27a27878 100644 --- a/src/map/battle.h +++ b/src/map/battle.h @@ -359,6 +359,8 @@ extern struct Battle_Config { unsigned short motd_type; // [celest]
unsigned short finding_ore_rate; // orn
unsigned short exp_calc_type;
+ unsigned short exp_bonus_attacker;
+ unsigned short exp_bonus_max_attacker;
unsigned short min_skill_delay_limit;
unsigned short default_skill_delay;
unsigned short no_skill_delay;
|