- Better Chat5.*
- UFilter5.1.2
AntiSpam
Oxide plugin for Rust game. Filters spam and impersonation in player names and chat messages.
This plugin is about to filter spam and impersonation.
It supports 2 way of filtering: regex and blacklist. Regex should cover most cases, but if you need to filter something specific you can use both.
Default regex matches IP
, port
, domain
with subdomains
, admin
, moder
words and spam tags like #BESTRUST
. It's case insensitive by the design (at least for english). If Filter player names
is set to true
player names will be checked. If player name is empty (or whitespace) player will be renamed into Replacement for empty name
& 6 last diggits of his SteamID (Player-123456
by default).
All checks are disabled by default, so you can install plugin safely and then change default config to your needs. You probably want to try enabling only regex list first, as it may be all you need. Afterwards you can always enable additional checks if needed.
Tip
: to extend the list of domains in regex, add new domains as follows:((\\p{L}|[0-9]|-) \\.) (domain1|domain2|domain3)"
Permissions
antispam.immunity
-- Allows player to not being checked by this plugin
Configuration
{
"Global settings": {
"Enable logging": false,
"Filter chat messages": false,
"Filter player names": false,
"Use UFilter plugin on player names": false,
"Replacement for empty name": "Player-"
},
"Spam settings": {
"Use regex": false,
"Regex list": [
"(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",
"(:\\d{3,5})",
"(https|http|ftp|):\\/\\/",
"((\\p{L}|[0-9]|-)+\\.)+(com|org|net|int|edu|gov|mil|ch|cn|co|de|eu|fr|in|nz|ru|tk|tr|uk|us)",
"((\\p{L}|[0-9]|-)+\\.)+(ua|pro|io|dev|me|ml|tk|ml|ga|cf|gq|tf|money|pl|gg|net|info|cz|sk|nl)",
"((\\p{L}|[0-9]|-)+\\.)+(store|shop)",
"(\\#+(.+)?rust(.+)?)",
"((.+)?rust(.+)?\\#+)"
],
"Use blacklist": false,
"Blacklist": [
"#SPAMRUST",
"#BESTRUST"
],
"Replacement for spam": ""
},
"Impersonation settings": {
"Use regex": false,
"Regex list": [
"([Ааa4][Ддd][Ммm][Ииi1][Ннn])",
"([Ммm][Ооo0][Ддd][Ееe3][Ррr])"
],
"Use blacklist": false,
"Blacklist": [
"Admin",
"Administrator",
"Moder",
"Moderator"
],
"Replacement for impersonation": ""
}
}
API
GetSpamFreeText
Plugins can call this API to clear text from spam.
string GetSpamFreeText(string text)
- Example:
string textWithSpam = "Some text with spam";
string textCleared = string.Empty;
if (AntiSpam != null && AntiSpam.IsLoaded)
{
textCleared = AntiSpam.Call<string>("GetSpamFreeText", textWithSpam);
}
GetImpersonationFreeText
Plugins can call this API to clear text from impersonation.
string GetImpersonationFreeText(string text)
- Example:
string textWithImpersonation = "Some text with impersonation";
string textCleared = string.Empty;
if (AntiSpam != null && AntiSpam.IsLoaded)
{
textCleared = AntiSpam.Call<string>("GetImpersonationFreeText", textWithImpersonation);
}
Credits
Ultra, the original author of AntiSpamNames plugin which this is inspired by
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
- MJSUDeveloper