diff options
Diffstat (limited to 'conf/battle_athena.conf')
-rw-r--r-- | conf/battle_athena.conf | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/conf/battle_athena.conf b/conf/battle_athena.conf index 782a05bd..574938d6 100644 --- a/conf/battle_athena.conf +++ b/conf/battle_athena.conf @@ -240,8 +240,10 @@ quest_skill_reset: no // You must have basic skills to be able to sit, trade, form a party or create a chatroom? (Note 1) basic_skill_check: yes -// When making a guild, an Emperium is consumed? (Note 1) -guild_emperium_check: yes +// Item to require when making a guild. Setting this to +// 0 will disable the check. Using item 1337 for now +// to disable creation (as it's unallocated) +guild_emperium_check: 1337 // Maximum tax limit on a guild member. guild_exp_limit: 50 @@ -725,5 +727,13 @@ chat_spam_ban: 1 // Maximum line lengt, if a message is above chat_maxline, its dropped [1-512]. Default 255. chat_maxline: 512 +// Packet flood protection +// If more than packet_spam_flood over-limits packets are recieved in +// packet_spam_threshold seconds, we will kick the user if packet_spam_kick +// is not set to 0. Limits on individual packets are defined in src/map/clif.c +packet_spam_flood: 30 +packet_spam_threshold: 2 +packet_spam_kick: 1 + // local settings for this server in this file import: conf/battle_local.conf |