diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-03-06 19:16:09 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-03-06 19:16:09 +0000 |
commit | c7a8f268c8110899f374cd367afaa564d47ff691 (patch) | |
tree | 2330fd66b29e75dbfdcaaae976a67859f7908019 /src/map/battle.c | |
parent | cc77964c3e6134a6b2257501fd1b79c4330af4ea (diff) | |
download | hercules-c7a8f268c8110899f374cd367afaa564d47ff691.tar.gz hercules-c7a8f268c8110899f374cd367afaa564d47ff691.tar.bz2 hercules-c7a8f268c8110899f374cd367afaa564d47ff691.tar.xz hercules-c7a8f268c8110899f374cd367afaa564d47ff691.zip |
* Implemented search store info system (aka. vending and buying store search) together with related items.
- Requires 2010-08-03aRagexeRE or later and can be disabled in 'conf/battle/feature.conf'.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14732 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index 26348700b..ab5dbc102 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -4008,6 +4008,9 @@ static const struct _battle_data { { "client_sort_storage", &battle_config.client_sort_storage, 0, 0, 1, }, { "gm_check_minlevel", &battle_config.gm_check_minlevel, 60, 0, 100, }, { "feature.buying_store", &battle_config.feature_buying_store, 1, 0, 1, }, + { "feature.search_stores", &battle_config.feature_search_stores, 1, 0, 1, }, + { "searchstore_querydelay", &battle_config.searchstore_querydelay, 10, 0, INT_MAX, }, + { "searchstore_maxresults", &battle_config.searchstore_maxresults, 30, 1, INT_MAX, }, // BattleGround Settings { "bg_update_interval", &battle_config.bg_update_interval, 1000, 100, INT_MAX, }, { "bg_short_attack_damage_rate", &battle_config.bg_short_damage_rate, 80, 0, INT_MAX, }, |