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)"
antispam.immunity
-- Allows player to not being checked by this plugin
{
"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": ""
}
}
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);
}
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);
}
Ultra, the original author of AntiSpamNames plugin which this is inspired by