Jump to content

Watchdog - Language (V2.0.4.0 - 06/12)


ImportBot

Recommended Posts

  • Replies 388
  • Created
  • Last Reply

Top Posters In This Topic

  • ImportBot

    389

Originally Posted by Cain*:

 

Thank you for the reply. I would strongly suggest an option for banning by PB GUID, please.

 

There is a known problem with BF3 server crashing when the Banlist (Banlist.txt) gets large, while any size of PB ban list (pbbans.dat) will not crash the server.

 

BF3 servers are fragile enough without us having to deal with crashes caused by our banlist.txt files.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by WebRat*:

 

Installed the plugin for BF3, very nice thank you!

 

I added the word "test" (lowercase) and in chat said "TEST" (uppercase) and was kicked after 5 seconds.

 

For BF3 Private messages do not work so I just deleted them.

These are my new messages, what do you think?

 

Player %PN% was auto killed for language!

Player %PN% was auto kicked for language!

Player %PN% was auto banned for language!

Player %PN% was temp banned (%Time%) for Language!

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

Don't delete private message =>

 

For Private/public

The public message is seen on the server (ingame) (the player "foo" has been killed for her language)

The private message is seen on the battlelog when player is kicked/banned. (on battlelog:You have been killing for your language)

 

 

good messages :ohmy:

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by QUACK-Major-Pain*:

 

"hehe" causes kill, but it's not in the list that I can see.

 

Code:

f4g
sh!t
ph4g
tw4t
a55
foder
bitch
asshole
a$$
a$$hole
a$$holes
a$$es
a$$e$
a$$ed
a$$h0le
a$$h0les
a$$h0l3
a$$h0l3s
fdp
vsf
fag
fucking
encul
baise
bullshit
fuck
ufck
connard
abruti
batar
"[^a-z]{1}con[ne]*[^a-z]{1,}[ .]*"
"[^a-z]{1}co[n]{1,}[a]{1,}[r]{1,}[d]{1,}[^a-z]{1,}[ .]*"
"a[s$]{1,}h[0o]{1,}le[^a-z]{1,}[ .]*"
"salop[e3]{1,}[^a-z]{1,}[ .]*"
"[^a-z]{1}cul[^a-z]{1,}[ .]*"
"[^a-z]{1}couille[s]*[^a-z]{1,}[ .]*"
"[1i!e3]{1,}[gh896]{1,}[aero40]{1,}[s]*[^a-z]{1,}[ .]*"
"p[u]*t[ain]{1,}[s]*[^a-z]{1,}[ .]*"
"bou[f]{1,}on[nes]*[^a-z]{1,}[ .]*"
"f[ ]*d[ ]*p[^a-z]{1,}[ .]*"\
pussy
bastard
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

"hehe" causes kill, but it's not in the list that I can see.

 

Code:

f4g
sh!t
ph4g
tw4t
a55
foder
bitch
asshole
a$$
a$$hole
a$$holes
a$$es
a$$e$
a$$ed
a$$h0le
a$$h0les
a$$h0l3
a$$h0l3s
fdp
vsf
fag
fucking
encul
baise
bullshit
fuck
ufck
connard
abruti
batar
"[^a-z]{1}con[ne]*[^a-z]{1,}[ .]*"
"[^a-z]{1}co[n]{1,}[a]{1,}[r]{1,}[d]{1,}[^a-z]{1,}[ .]*"
"a[s$]{1,}h[0o]{1,}le[^a-z]{1,}[ .]*"
"salop[e3]{1,}[^a-z]{1,}[ .]*"
"[^a-z]{1}cul[^a-z]{1,}[ .]*"
"[^a-z]{1}couille[s]*[^a-z]{1,}[ .]*"
"[1i!e3]{1,}[gh896]{1,}[aero40]{1,}[s]*[^a-z]{1,}[ .]*"
"p[u]*t[ain]{1,}[s]*[^a-z]{1,}[ .]*"
"bou[f]{1,}on[nes]*[^a-z]{1,}[ .]*"
"f[ ]*d[ ]*p[^a-z]{1,}[ .]*"\
pussy
bastard
this line "[1i!e3]{1,}[gh896]{1,}[aero40]{1,}*[^a-z]{1,}[ .]*"

use "[^a-z]{1}[1i!e3]{1,}[gh896]{1,}[aero40]{1,}*[^a-z]{1,}[ .]*"

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

For regex :

 

1) not kill/kick/... : xxxWordxxx

 

use : "[^a-z]{1}Word[^a-z]{1,}[ .]*"

Word = ass

Result : glass, assignment are authorized; ass is not authorized

 

 

2) not kill/kick/... : Wordxxx

 

use : "Word[^a-z]{1,}[ .]*"

Word = ass

Result : assignment is authorized, glass and ass are not authorized

 

3) not kill/kick/... : xxxWord

 

use : "[^a-z]{1}Word"

Word = ass

Result : glass is authorized, assignment and ass are not authorized

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

"[1i!e3]{1,}[gh896]{1,}[aero40]{1,}*[^a-z]{1,}[ .]*"

 

Is form 2)

 

2) not kill/kick/... : Wordxxx

 

[1i!e3]{1,} => e contain one or more times "1" or/and "i" or/and "!" or/and "e" or/and "3"

[gh896]{1,} => h contain one or more times "g" or/and "h" or/and "8" or/and "9" or/and "6"

[aero40]{1,} => e contain one or more times "a" or/and "e" or/and "r" or/and "o" or/and "4" or/and "0"

 

Result : ehexxxxx is authorized, hehe and ee1111!3eeeeehe are not authorized

 

 

 

You need to use form 1)

1) not kill/kick/... : xxxWordxxx

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Operator*:

 

CWatchdog V1.1 is release !

 

Example with nigga and regex:

 

CSharp-Regular-Expressions-Cheat-Sheet

 

list of bad word :

nigga

niga

n1ga

nig4

NI8A

NI9A

n!ga

nigggga

negra

negro

n3gro

n3gra

negre

negr0

negro

etc...

 

 

After we need to check the end of sentence, if it's a beginning of a word or complete word

5) "n[1i!e3]+[g89]+[aero40]+[^a-z]+[ .]*"

 

To conclude : "n[1i!e3]+[g89]+[aero40]+[^a-z]+[ .]*" for the term nega works !

To get this to work, for all the words in the list above,

 

Do I add:

Code:

"n[1i!e3]+[g89]+[aero40]+[^a-z]+[ .]*"
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by micovery*:

 

Don't use the symbol + in regex because procon doesn't save this symbol! USING {1,} as +

 

Use (with form (xxxWordxxx)) :

"[^a-z]{1}n[1i!e3]{1,}[g89]{1,}[aero40]{1,}[^a-z]{1,}[ .]*"

Soarda, see this link www.phogue.net/forumvb/showth...ghlight=encode* ... there is work-around to make ProCon settings with + symbol.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Operator*:

 

the code Sorda gave, seem to work with all capital letters...

 

Someone on my server was spamming it in all capital letters, and nothing happend. when i tested it on my own in a squad by myself, i used lower case, and i was killed/kicked

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by pcaddict*:

 

I must be missing something but is someone kicked/killed after using one bad word contained in the kill/kick list? Or is there a setting that says how many times a player can say a bad word before being killed/kicked? The reason I ask is that I looked at my chat logs from last night and a player said "wtf, my sniper can't fu**ing kill your tank" and it looked like the player was kicked after only one occurence. I didn't see any other bad words before that. I am using the list that was included in the text file in this plugin download.

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Operator*:

 

If you want the player to be killed, then kicked, then temp banned, then perma banned...

 

only list the word in the kill list. Then look at the settings, you can have it so that they are killed 2 times, then after being killed 2 times, they get kicked, then temp banned, etc... in order

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

the code Sorda gave, seem to work with all capital letters...

 

Someone on my server was spamming it in all capital letters, and nothing happend. when i tested it on my own in a squad by myself, i used lower case, and i was killed/kicked

In kill list ? normally it's impossible because the message of player is converted to lowercase before processing.

 

 

 

@pcaddict:

The lists are direct methods. If you put words in the list of kill, the player will kill. In the list of kick, the player will kick (directly)....

 

Then you can add rules on the maximum number of offense before a sanction higher.

ex: after 3 kill => kick

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by pcaddict*:

 

@pcaddict:

The lists are direct methods. If you put words in the list of kill, the player will kill. In the list of kick, the player will kick (directly)....

 

Then you can add rules on the maximum number of offense before a sanction higher.

ex: after 3 kill => kick

Thanks for the clarification. I really like the plug-in btw. Great job.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Operator*:

 

"hehe" causes kill, but it's not in the list that I can see.

 

Code:

f4g
sh!t
ph4g
tw4t
a55
foder
bitch
asshole
a$$
a$$hole
a$$holes
a$$es
a$$e$
a$$ed
a$$h0le
a$$h0les
a$$h0l3
a$$h0l3s
fdp
vsf
fag
fucking
encul
baise
bullshit
fuck
ufck
connard
abruti
batar
"[^a-z]{1}con[ne]*[^a-z]{1,}[ .]*"
"[^a-z]{1}co[n]{1,}[a]{1,}[r]{1,}[d]{1,}[^a-z]{1,}[ .]*"
"a[s$]{1,}h[0o]{1,}le[^a-z]{1,}[ .]*"
"salop[e3]{1,}[^a-z]{1,}[ .]*"
"[^a-z]{1}cul[^a-z]{1,}[ .]*"
"[^a-z]{1}couille[s]*[^a-z]{1,}[ .]*"
"[1i!e3]{1,}[gh896]{1,}[aero40]{1,}[s]*[^a-z]{1,}[ .]*"
"p[u]*t[ain]{1,}[s]*[^a-z]{1,}[ .]*"
"bou[f]{1,}on[nes]*[^a-z]{1,}[ .]*"
"f[ ]*d[ ]*p[^a-z]{1,}[ .]*"\
What words do these represent?
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by WaxMyCarrot*:

 

I get the idea of the RegEx but do not understand how to create my own words.. I googled it but failed. We don't care too much about words like fuck and noob cause we are playing a war game.. but would like to filter out racist and hate words like Nigger and faggot.. how would i write it to filter those and all variants like fag and negro?

 

I tried this but it did not catch most spellings. "n[1i!e3]+[g89]+[aero40]+[^a-z]+[ .]*"

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

V1.3.0.0 is release : CWatchdogLanguageV1.3.0.0.zip

 

Support of + in regex and adding ban by guid

 

@WaxMyCarrot :

uses the latest version :ohmy:

 

with this "n[1i!e3]+[g89]+[aero40]+[^a-z]+[ .]*"

you catching many form of nigga (nigggga n1ga, n!9a, negro, n3gr0 etc.)

 

 

fag, faggot, fa9, fagg0t etc => "fa[g89]+[o0]+[t]*[^a-z]+[ .]*"

 

+ = 1 or more

* = 0 or more

[] = ex: [o0] = o or 0

* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by WaxMyCarrot*:

 

@WaxMyCarrot :

uses the latest version :ohmy:

 

with this "n[1i!e3]+[g89]+[aero40]+[^a-z]+[ .]*"

you catching many form of nigga (nigggga n1ga, n!9a, negro, n3gr0 etc.)

 

 

fag, faggot, fa9, fagg0t etc => "fa[g89]+[o0]+[t]*[^a-z]+[ .]*"

 

+ = 1 or more

* = 0 or more

[] = ex: [o0] = o or 0

Sweet works perfect.. might be helpful to start a list on OP of common terms to copy/paste. As long as it wouldn't put you through to much extra work.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Soarda*:

 

Thx! EA GUID or PB Guid?

PB Guid

 

start a list on OP of common terms to copy/paste.

Good idea

 

We need to list all the terms

 

This list is based on the words said on my server :

 

[French]

[defamatory/vulgar]

pd

con

connard

putain

merde

enculer

baise

abruti

batard

fdp

cul

couille

salope

tarlouse

tentouse

bouffon

"ferme ta gueule"

"va te faire mettre"

"faire foutre"

"niquer ta mere"

 

[racisme]

negros

 

[English]

[defamatory/vulgar]

fuck

bullshit

prick

suck

 

[racisme]

nigga

* Restored post. It could be that the author is no longer active.
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Our picks

    • Game Server Hosting:

      We're happy to announce that EZRCON will branch out into the game server provider scene. This is a big step for us so please having patience if something doesn't go right in this area. Now, what makes us different compared to other providers? Well, we're going with the idea of having a scaleable server hosting and providing more control in how you set up your server. For example, in Minecraft, you have the ability to control how many CPU cores you wish your server to have access to, how much RAM you want to use, how much disk space you want to use. This type of control can't be offered in a single service package so you're able to configure a custom package the way you want it.

      You can see all the available games here. Currently, we have the following games available.

      Valheim (From $1.50 USD)


      Rust (From $3.20 USD)


      Minecraft (Basic) (From $4.00 USD)


      Call of Duty 4X (From $7.00 USD)


      OpenTTD (From $4.00 USD)


      Squad (From $9.00 USD)


      Insurgency: Sandstorm (From $6.40 USD)


      Changes to US-East:

      Starting in January 2022, we will be moving to a different provider that has better support, better infrastructure, and better connectivity. We've noticed that the connection/routes to this location are not ideal and it's been hard getting support to correct this. Our contract for our two servers ends in March/April respectively. If you currently have servers in this location you will be migrated over to the new provider. We'll have more details when the time comes closer to January. The new location for this change will be based out of Atlanta, GA. If you have any questions/concerns please open a ticket and we'll do our best to answer them.
      • 5 replies
    • Hello All,

      I wanted to give an update to how EZRCON is doing. As of today we have 56 active customers using the services offered. I'm glad its doing so well and it hasn't been 1 year yet. To those that have services with EZRCON, I hope the service is doing well and if not please let us know so that we can improve it where possible. We've done quite a few changes behind the scenes to improve the performance hopefully. 

      We'll be launching a new location for hosting procon layers in either Los Angeles, USA or Chicago, IL. Still being decided on where the placement should be but these two locations are not set in stone yet. We would like to get feedback on where we should have a new location for hosting the Procon Layers, which you can do by replying to this topic. A poll will be created where people can vote on which location they would like to see.

      We're also looking for some suggestions on what else you would like to see for hosting provider options. So please let us know your thoughts on this matter.
      • 4 replies
    • Added ability to disable the new API check for player country info


      Updated GeoIP database file


      Removed usage sending stats


      Added EZRCON ad banner



      If you are upgrading then you may need to add these two lines to your existing installation in the file procon.cfg. To enable these options just change False to True.

      procon.private.options.UseGeoIpFileOnly False
      procon.private.options.BlockRssFeedNews False



       
      • 2 replies
    • I wanted I let you know that I am starting to build out the foundation for the hosting services that I talked about here. The pricing model I was originally going for wasn't going to be suitable for how I want to build it. So instead I decided to offer each service as it's own product instead of a package deal. In the future, hopefully, I will be able to do this and offer discounts to those that choose it.

      Here is how the pricing is laid out for each service as well as information about each. This is as of 7/12/2020.

      Single MySQL database (up to 30 GB) is $10 USD per month.



      If you go over the 30 GB usage for the database then each additional gigabyte is charged at $0.10 USD each billing cycle. If you're under 30GB you don't need to worry about this.


      Databases are replicated across 3 zones (regions) for redundancy. One (1) on the east coast of the USA, One (1) in Frankfurt, and One (1) in Singapore. Depending on the demand, this would grow to more regions.


      Databases will also be backed up daily and retained for 7 days.




      Procon Layer will be $2 USD per month.


      Each layer will only allow one (1) game server connection. The reason behind this is for performance.


      Each layer will also come with all available plugins installed by default. This is to help facilitate faster deployments and get you up and running quickly.


      Each layer will automatically restart if Procon crashes. 


      Each layer will also automatically restart daily at midnight to make sure it stays in tip-top shape.


      Custom plugins can be installed by submitting a support ticket.




      Battlefield Admin Control Panel (BFACP) will be $5 USD per month


      As I am still working on building version 3 of the software, I will be installing the last version I did. Once I complete version 3 it will automatically be upgraded for you.





      All these services will be managed by me so you don't have to worry about the technical side of things to get up and going.

      If you would like to see how much it would cost for the services, I made a calculator that you can use. It can be found here https://ezrcon.com/calculator.html

       
      • 11 replies
    • I have pushed out a new minor release which updates the geodata pull (flags in the playerlisting). This should be way more accurate now. As always, please let me know if any problems show up.

       
      • 9 replies
×
×
  • Create New...

Important Information

Please review our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.