From 665e0ea53edaf2d7501b00510ac93701e3c84c0d Mon Sep 17 00:00:00 2001 From: MadCamel Date: Thu, 9 Apr 2009 12:53:21 +0000 Subject: Config entries for new anti-spam system --- conf/battle_athena.conf | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'conf') diff --git a/conf/battle_athena.conf b/conf/battle_athena.conf index a4806bec..a28ce9c1 100644 --- a/conf/battle_athena.conf +++ b/conf/battle_athena.conf @@ -708,18 +708,19 @@ max_cloth_color: 4 area_size: 14 // chat system: -// 2 anti spam systems works together, one is a time based system and the -// other is a repeat based system. Both count up individually, and if one -// surpasses the spam_threshold, players is auto-banned for spam_ban hours +// More than flood lines in threshold milliseconds gets a ban +// More than warn lines in threshold milliseconds gets a warning +chat_spam_flood: 10 +chat_spam_warn: 8 +chat_spam_threshold: 10000 -// how many hours to auto ban spammer, 0 to disable [0-32767]. Default 6. -spam_ban: 1 - -// how many ms must the message be within to hit threshold counter [1-32767]. Default 3000. -spam_time: 3000 +// How much to increment the line count if the content is lame. +// Lameness is defined as mostly caps, punctuation, or a repeat of the last line. +// Set to 1 or 2 depending on how much you hate hearing "ITEN PLZ!" 3 times in a row.. +chat_lame_penalty: 2 -// how many unpaused lines/repeats in a row before ban trigger [1-32767]. Default 10. -spam_threshold: 10 +// how many hours to auto ban spammer, 0 to disable [0-32767]. Default 6. +chat_spam_ban: 1 // Maximum line lengt, if a message is above chat_maxline, its dropped [1-512]. Default 255. chat_maxline: 512 -- cgit v1.2.3-70-g09d2 From 80c728163b6df85275b1e9d20639a7e3f500ccff Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Thu, 23 Apr 2009 11:41:26 -0600 Subject: Add some of fate's new commands to some files --- conf/atcommand_local.conf.example | 19 +++++++++++++++++++ conf/help.txt.example | 9 ++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/atcommand_local.conf.example b/conf/atcommand_local.conf.example index 1f07f962..0186cadd 100644 --- a/conf/atcommand_local.conf.example +++ b/conf/atcommand_local.conf.example @@ -109,6 +109,13 @@ itemreset: 40 // Sets your spawn point (aka save point). save: 40 +// Send text to the GM log +log: 40 +l: 40 + +// Send text to the GM log and local chat +tee: 40 +t: 40 //-------------------- // 60: "GM" @@ -285,6 +292,18 @@ chardropall: 60 // put a players possessions in storage charstoreall: 60 +// iterate over players +// forward +hugo: 60 +// backward +linus: 60 + +// make yourself invisible to everyone +invisible: 60 + +// make yourself visible to everyone +visible: 60 + //---------------------- // 80: "eA Dev" diff --git a/conf/help.txt.example b/conf/help.txt.example index 3aa1af99..78f45a80 100644 --- a/conf/help.txt.example +++ b/conf/help.txt.example @@ -30,7 +30,9 @@ 40: 40:--- CHANGE GM STATE CMD --- 40:@die ---- suicide - 40:@hide - Makes you character invisible (GM invisibility). Type @hide again become visible. + 40:@hide - Makes your character invisible (GM invisibility). Type @hide again become visible. + 60:@invisible - Makes your character invisible (complete) + 60:@visible - Makes your character visible (opposite of @invisible) 40:@save - Sets respawn point to current spot 40:@return - Warps you to your save point 40:@warp - Warps you to the selected position @@ -42,6 +44,11 @@ 40: -2: (Memo point 1) 2: geffen 6: aldebaran 10: amatsu 14: louyang 40: -1: (Memo point 0) 3: payon 7: xmas (lutie) 11: gonryun 15: start point 40: 0: prontera 4: alberta 8: comodo 12: umbala 16: prison/jail + 60:@hugo - iterate over players forward + 60:@linus - iterator over players backwards + 40: + 40:@log/@l - Send text to the GM log + 40:@tee/@t - Send text to the GM log and local chat 40: 60:@alive - Revives yourself from death 40:@heal [ ] - Heals the desired amount of HP and SP. No value specified will do a full heal. -- cgit v1.2.3-70-g09d2 From f1c890b9d3f6fedcdd910b2683fcfeae5112be40 Mon Sep 17 00:00:00 2001 From: MadCamel Date: Sun, 3 May 2009 10:44:28 +0000 Subject: Antispam threshold now measured in seconds --- conf/battle_athena.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'conf') diff --git a/conf/battle_athena.conf b/conf/battle_athena.conf index a28ce9c1..d4852dd7 100644 --- a/conf/battle_athena.conf +++ b/conf/battle_athena.conf @@ -708,11 +708,11 @@ max_cloth_color: 4 area_size: 14 // chat system: -// More than flood lines in threshold milliseconds gets a ban -// More than warn lines in threshold milliseconds gets a warning +// More than flood lines in threshold seconds gets a ban +// More than warn lines in threshold seconds gets a warning chat_spam_flood: 10 chat_spam_warn: 8 -chat_spam_threshold: 10000 +chat_spam_threshold: 10 // How much to increment the line count if the content is lame. // Lameness is defined as mostly caps, punctuation, or a repeat of the last line. -- cgit v1.2.3-70-g09d2 From 372def05e41e614462e135141a1aefca134abc0e Mon Sep 17 00:00:00 2001 From: Chuck Miller Date: Mon, 4 May 2009 17:04:08 -0400 Subject: Changed help text and comments in atcommand_local.conf.example to better reflect what @hide does --- conf/atcommand_local.conf.example | 3 ++- conf/help.txt.example | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'conf') diff --git a/conf/atcommand_local.conf.example b/conf/atcommand_local.conf.example index 0186cadd..ca369949 100644 --- a/conf/atcommand_local.conf.example +++ b/conf/atcommand_local.conf.example @@ -81,7 +81,8 @@ charstats: 40 // Heals a person to full HP/SP. heal: 40 -// GM Hide (enables you to be invisible to characters, and most monsters) (1 command + /hide). +// GM Hide (hides you from monsters and most reporting functions). +// To hide from other players use @invisible hide: 40 // Enables you to to jump randomly on a map (that you are already on). diff --git a/conf/help.txt.example b/conf/help.txt.example index 78f45a80..bcbbf563 100644 --- a/conf/help.txt.example +++ b/conf/help.txt.example @@ -30,7 +30,7 @@ 40: 40:--- CHANGE GM STATE CMD --- 40:@die ---- suicide - 40:@hide - Makes your character invisible (GM invisibility). Type @hide again become visible. + 40:@hide - Makes you invisible to monsters and other reporting functions. Type @hide again become visible. 60:@invisible - Makes your character invisible (complete) 60:@visible - Makes your character visible (opposite of @invisible) 40:@save - Sets respawn point to current spot -- cgit v1.2.3-70-g09d2 From 50e499eedddead9bc4adea8e957694388aea6479 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Tue, 5 May 2009 09:11:58 -0600 Subject: Only show (GM) for level 60 and higher accounts --- conf/char_athena.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/char_athena.conf b/conf/char_athena.conf index 83a06145..d1e27843 100644 --- a/conf/char_athena.conf +++ b/conf/char_athena.conf @@ -106,7 +106,7 @@ online_sorting_option: 0 online_display_option: 64 // minimum GM level to display 'GM' when we want to display it (default: 1) -online_gm_display_min_level: 20 +online_gm_display_min_level: 60 // refresh time (in sec) of the html file in the explorer (default 20) online_refresh_html: 20 -- cgit v1.2.3-70-g09d2