|
@@ -8188,6 +8188,7 @@ static const struct _battle_data {
|
|
{ "exp_cost_redemptio", &battle_config.exp_cost_redemptio, 1, 0, 100, },
|
|
{ "exp_cost_redemptio", &battle_config.exp_cost_redemptio, 1, 0, 100, },
|
|
{ "exp_cost_redemptio_limit", &battle_config.exp_cost_redemptio_limit, 5, 0, MAX_PARTY, },
|
|
{ "exp_cost_redemptio_limit", &battle_config.exp_cost_redemptio_limit, 5, 0, MAX_PARTY, },
|
|
{ "exp_cost_inspiration", &battle_config.exp_cost_inspiration, 1, 0, 100, },
|
|
{ "exp_cost_inspiration", &battle_config.exp_cost_inspiration, 1, 0, 100, },
|
|
|
|
+ { "mvp_exp_reward_message", &battle_config.mvp_exp_reward_message, 0, 0, 1, },
|
|
};
|
|
};
|
|
|
|
|
|
#ifndef STATS_OPT_OUT
|
|
#ifndef STATS_OPT_OUT
|
|
@@ -8422,6 +8423,13 @@ void battle_adjust_conf()
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
+#if PACKETVER < 20131223
|
|
|
|
+ if (battle_config.mvp_exp_reward_message) {
|
|
|
|
+ ShowWarning("conf/battle/client.conf MVP EXP reward message is enabled but it requires PACKETVER 2013-12-23 or newer, disabling...\n");
|
|
|
|
+ battle_config.mvp_exp_reward_message = 0;
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+
|
|
#if PACKETVER < 20141022
|
|
#if PACKETVER < 20141022
|
|
if (battle_config.feature_roulette) {
|
|
if (battle_config.feature_roulette) {
|
|
ShowWarning("conf/battle/feature.conf roulette is enabled but it requires PACKETVER 2014-10-22 or newer, disabling...\n");
|
|
ShowWarning("conf/battle/feature.conf roulette is enabled but it requires PACKETVER 2014-10-22 or newer, disabling...\n");
|