diff options
author | shennetsind <ind@henn.et> | 2013-06-14 08:53:17 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-06-14 08:53:17 -0300 |
commit | 5a942993dd12ae7d85b1633a58b0dc23f85832c2 (patch) | |
tree | 7fb1b11e988fa99d41da2c1a858cbeb3daef4649 /src/map/battle.c | |
parent | 5321d32c8d670fbfbfe02f7df5066170aa20ee2e (diff) | |
download | hercules-5a942993dd12ae7d85b1633a58b0dc23f85832c2.tar.gz hercules-5a942993dd12ae7d85b1633a58b0dc23f85832c2.tar.bz2 hercules-5a942993dd12ae7d85b1633a58b0dc23f85832c2.tar.xz hercules-5a942993dd12ae7d85b1633a58b0dc23f85832c2.zip |
Hercules WPE Free
Official Packet Obfuscation Support
http://hercules.ws/board/topic/1105-hercules-wpe-free-june-14th-patch/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 9fa4224f5..1fa35116e 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -6368,7 +6368,7 @@ static const struct _battle_data { { "cashshop_show_points", &battle_config.cashshop_show_points, 0, 0, 1, }, { "mail_show_status", &battle_config.mail_show_status, 0, 0, 2, }, { "client_limit_unit_lv", &battle_config.client_limit_unit_lv, 0, 0, BL_ALL, }, -// BattleGround Settings + // BattleGround Settings { "bg_update_interval", &battle_config.bg_update_interval, 1000, 100, INT_MAX, }, { "bg_flee_penalty", &battle_config.bg_flee_penalty, 20, 0, INT_MAX, }, /** @@ -6393,6 +6393,7 @@ static const struct _battle_data { { "max_walk_path", &battle_config.max_walk_path, 17, 1, MAX_WALKPATH, }, { "item_enabled_npc", &battle_config.item_enabled_npc, 1, 0, 1, }, { "gm_ignore_warpable_area", &battle_config.gm_ignore_warpable_area, 0, 2, 100, }, + { "packet_obfuscation", &battle_config.packet_obfuscation, 1, 0, 3, }, }; #ifndef STATS_OPT_OUT /** @@ -6617,7 +6618,7 @@ void battle_adjust_conf(void) { #ifndef CELL_NOSTACK if (battle_config.cell_stack_limit != 1) - ShowWarning("Battle setting 'cell_stack_limit' takes no effect as this server was compiled without Cell Stack Limit support.\n"); + ShowWarning("Battle setting 'cell_stack_limit' takes no effect as this server was compiled without Cell Stack Limit support (CELL_NOSTACK).\n"); #endif } |