Jump to content

Advanced In-Game Admin and Ban Enforcer - AdKats


Message added by Prophet731,

If you've been banned from a server then you will need to appeal the ban with the owners/community of that server. We do not control any bans done on servers that utilize AdKats as all bans are local to that server.

Recommended Posts

Originally Posted by spatieman*:

 

Please read the last sentence in the main post of the plugin, that was updated when the final patch went live with 135 bugfixes and improvements.

 

Wherever AdKats is used, both myself and a very close friend will have a reserved slot. This is the least I could require after nearly 4,500 hours of development on the plugin. Thank you for using AdKats.

ok, i respect that..

thank you.

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

Originally Posted by www-battleplay4u-com*:

 

Hi guys, i have a strange problem, maybe you can help me :smile:

Everytime i punish someone, i get the message " Killed by admin for [reason] [0pts]"

And that happens everytime. He does not count the infraction points and does not issue IROs as well.

Any idea why that happens?

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

Originally Posted by Hodor*:

 

Hi guys, i have a strange problem, maybe you can help me :smile:

Everytime i punish someone, i get the message " Killed by admin for [reason] [0pts]"

And that happens everytime. He does not count the infraction points and does not issue IROs as well.

Any idea why that happens?

My friend had this too... Was a problem with MySQL database, helped full wipe.
* Restored post. It could be that the author is no longer active.
Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

Hi guys, i have a strange problem, maybe you can help me :smile:

Everytime i punish someone, i get the message " Killed by admin for [reason] [0pts]"

And that happens everytime. He does not count the infraction points and does not issue IROs as well.

Any idea why that happens?

Being the infinite genius i was back in college, i didn't test the system for database backups and restores, and since the infraction tracking system uses triggers to count how many infractions a person has it doesn't work properly during backup/restore.

 

Do the following.

 

Run this.

 

Code:

SET FOREIGN_KEY_CHECKS=0;
this blocks your bans/other things from being broken by this process.

 

Back up your adkats_records_main table to some local location.

 

Run this.

 

Code:

TRUNCATE adkats_records_main;
TRUNCATE adkats_records_debug;
TRUNCATE adkats_infractions_server;
TRUNCATE adkats_infractions_global;
Add the triggers back with this.

 

Code:

DROP TRIGGER IF EXISTS `adkats_infraction_point_delete`;
DELIMITER $$
CREATE TRIGGER `adkats_infraction_point_delete` AFTER DELETE ON `adkats_records_main`
 FOR EACH ROW BEGIN 
        DECLARE command_type VARCHAR(45);
        DECLARE server_id INT(11);
        DECLARE player_id INT(11);
        SET command_type = OLD.command_type;
        SET server_id = OLD.server_id;
        SET player_id = OLD.target_id;


        IF(command_type = 9) THEN
            INSERT INTO `adkats_infractions_server` 
                (`player_id`, `server_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, server_id, 0, 0, 0) 
            ON DUPLICATE KEY UPDATE 
                `punish_points` = `punish_points` - 1, 
                `total_points` = `total_points` - 1;
            INSERT INTO `adkats_infractions_global` 
                (`player_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, 0, 0, 0) 
            ON DUPLICATE KEY UPDATE 
                `punish_points` = `punish_points` - 1, 
                `total_points` = `total_points` - 1;
        ELSEIF (command_type = 10) THEN
            INSERT INTO `adkats_infractions_server` 
                (`player_id`, `server_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, server_id, 0, 0, 0) 
            ON DUPLICATE KEY UPDATE 
                `forgive_points` = `forgive_points` - 1, 
                `total_points` = `total_points` + 1;
            INSERT INTO `adkats_infractions_global` 
                (`player_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, 0, 0, 0) 
            ON DUPLICATE KEY UPDATE 
                `forgive_points` = `forgive_points` - 1, 
                `total_points` = `total_points` + 1;
        END IF;
    END
$$
DELIMITER ;
DROP TRIGGER IF EXISTS `adkats_infraction_point_insert`;
DELIMITER $$
CREATE TRIGGER `adkats_infraction_point_insert` BEFORE INSERT ON `adkats_records_main`
 FOR EACH ROW BEGIN 
        DECLARE command_type VARCHAR(45);
        DECLARE server_id INT(11);
        DECLARE player_id INT(11);
        SET command_type = NEW.command_type;
        SET server_id = NEW.server_id;
        SET player_id = NEW.target_id;


        IF(command_type = 9) THEN
            INSERT INTO `adkats_infractions_server` 
                (`player_id`, `server_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, server_id, 1, 0, 1) 
            ON DUPLICATE KEY UPDATE 
                `punish_points` = `punish_points` + 1, 
                `total_points` = `total_points` + 1;
            INSERT INTO `adkats_infractions_global` 
                (`player_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, 1, 0, 1) 
            ON DUPLICATE KEY UPDATE 
                `punish_points` = `punish_points` + 1, 
                `total_points` = `total_points` + 1;
        ELSEIF (command_type = 10) THEN
            INSERT INTO `adkats_infractions_server` 
                (`player_id`, `server_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, server_id, 0, 1, -1) 
            ON DUPLICATE KEY UPDATE 
                `forgive_points` = `forgive_points` + 1, 
                `total_points` = `total_points` - 1;
            INSERT INTO `adkats_infractions_global` 
                (`player_id`, `punish_points`, `forgive_points`, `total_points`) 
            VALUES 
                (player_id, 0, 1, -1) 
            ON DUPLICATE KEY UPDATE 
                `forgive_points` = `forgive_points` + 1, 
                `total_points` = `total_points` - 1;
        END IF;
    END
$$
DELIMITER ;
Restore just your adkats_records_main table to the database.

 

You should now see the infractions populated in the adkats_infractions_global table.

 

Restore the links to your bans/records.

 

Code:

SET FOREIGN_KEY_CHECKS=1;
Link to comment

Originally Posted by mc_conery*:

 

Hello

 

I always get this error message. Can someone help me and say what it is?

 

[15:08:50 26] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:08:56 16] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:08:58 44] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:08:58 59] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:04 77] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:06 65] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:06 69] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:11 98] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:13 63] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:13 80] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:52 69] [AdKats] ERROR-6900: [Error processing battlelog stats for Skeezylice. Stats response did not contain weapon stats data.]

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

Originally Posted by ColColonCleaner*:

 

Hello

 

I always get this error message. Can someone help me and say what it is?

 

[15:08:50 26] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:08:56 16] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:08:58 44] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:08:58 59] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:04 77] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:06 65] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:06 69] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:11 98] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:13 63] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:13 80] [AdKats] WARNING: Multiple bans matched player information, linked accounts detected.

[15:09:52 69] [AdKats] ERROR-6900: [Error processing battlelog stats for Skeezylice. Stats response did not contain weapon stats data.]

Looks like i never updated that message to give information about who the linked accounts were. You can ignore the message as it's still enforcing bans on the players.
Link to comment

Originally Posted by llB00Nll*:

 

Ever since I updated the plugin to the latest version I have been unable to add any new VIP players to the slots ( It actually wiped all the VIP slots except for the admins). I have narrowed the issue down to Adkats but for the life of me I cannot figure out why it wont let me save new VIP names.

 

I do get this error if that may have anything to possibly do with it.

[AdKats] EXCEPTION-6900-D-UploadInnerRecord-DatabaseComm41: [unexpected error uploading Record.][MySql.Data.MySqlClient.MySqlException: Got error -1 from storage engine

at PRoConEvents.AdKats.SafeExecuteNonQuery(MySqlComma nd command)

at PRoConEvents.AdKats.UploadInnerRecord(AdKatsRecord record)]

I am wondering if anyone else may have had this issue and fixed it since the newest update, thanks
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by llB00Nll*:

 

@llB00Nll, I have no problems with the latest version of adkats.

Thanks for the reply, My memory is a bit fuzzy but in the previous version were you not able to add spectator slots in there ? I dont see the option to add spectator slots in this version. I had just acquired the server from the previous owner and was getting familiar with the procon plugins and AdKats before I updated the plugin to the newest version. Am I losing my memory or was that feature removed lol ?
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Hodor*:

 

Thanks for the reply, My memory is a bit fuzzy but in the previous version were you not able to add spectator slots in there ? I dont see the option to add spectator slots in this version. I had just acquired the server from the previous owner and was getting familiar with the procon plugins and AdKats before I updated the plugin to the newest version. Am I losing my memory or was that feature removed lol ?

Look at my two screenshots. Is that what you meant_:huh:

 

db1316373f.jpg

 

92e978021b.jpg

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

Originally Posted by llB00Nll*:

 

Look at my two screenshots. Is that what you meant_:huh:

 

db1316373f.jpg

 

92e978021b.jpg

I apologize , I didnt mean spectator slot but instead mean VIP slot. I thought you were able to add VIP slots directly from AdKats but I dont see the feature and I thought it was possible prior to the update.

 

 

*Edit*

 

Found a older post from ColColonCleaner

 

You running AdKats? Make sure you have "Feed server reserved slots" OFF if you dont want it using your AdKats user list for the reserved slots list.

I went ahead and disabled the Feed server reserved slots off and now I am able to add VIP slots back to the server VIA Procon without them being deleted.
* Restored post. It could be that the author is no longer active.
Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

I apologize , I didnt mean spectator slot but instead mean VIP slot. I thought you were able to add VIP slots directly from AdKats but I dont see the feature and I thought it was possible prior to the update.

 

 

*Edit*

 

Found a older post from ColColonCleaner

 

 

 

I went ahead and disabled the Feed server reserved slots off and now I am able to add VIP slots back to the server VIA Procon without them being deleted.

You are able to do this in AdKats. You can do it both in the user list, and via the reserved slot command for any duration of time. Were these commands not working for you? That's what the entire reserved slot feeding system is built for, you can even have them automated based on perks and such.
Link to comment

Originally Posted by Hodor*:

 

@ColColonCleaner

 

Is it possible to make a command to add to the role group like: /rgadd [playername] [rolenumber] [duration]? Example i have a Admin, a VIP roles - Admin is RLE3 | VIP is RLE4

I wanna do some cool stuff with proconrulz and I want to automate process :cool:

Code:

On Say;Text !luckforyou;Say /rgadd %p% RLE4 30d;PlayerSay VIP on 30 days
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by llB00Nll*:

 

You are able to do this in AdKats. You can do it both in the user list, and via the reserved slot command for any duration of time. Were these commands not working for you? That's what the entire reserved slot feeding system is built for, you can even have them automated based on perks and such.

I have looked for the place that I can add VIP slots via AdKats but I honestly dont see where or I dont know what the user list is that you are talking about or what section it may be in. I do know that prior to updating to latest version I am pretty sure I seen the VIP list in there.

 

With the "Feed Server Reserved Slots" off , I can add VIP slots via Procon but with it on , all but the admin names get erased. If you can clarify more on this user list and under what section it is in ( I dont specifically see just a "user list").

 

Thanks

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

Originally Posted by spatieman*:

 

ok, dunno if it is a bug, but sinds last version sudenly we noticed that after map change ALL players are in ONE team.

i checked all setings, but i cant finds the isue.

this even happens when we disabled the multibalanacer (what is still insane slow in balansing)

any ideas?

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

Originally Posted by llB00Nll*:

 

I have a few more questions in regards to understanding AdKats more.

 

1- I am getting this warning.

[18:36:07 12] [AdKats] WARNING: 266MB estimated memory used. MAP: 1:13, 2:0, 3:0, 4:0, 5:0, 6:0, 7:0, 8:2, 9:18, 10:18, 11:0, 12:5, 13:0, 14:64, 15:17, 16:124, 17:168, 18:0, 19:0, 20:0, 21:0, 22:0, 23:0, 24:0, 25:0, 26:0, 27:0, 28:0, 29:0, 30:0, 31:0, 32:0, 33:0, 34:0, 35:0, 36:65,

Because my knowledge is limited and I dont know how to deal with the situation im wondering if anyone can share some advice on how to fix the problem.

 

2- I also get this error.

[18:14:55 97] [AdKats] EXCEPTION-6900-D-UploadInnerRecord-DatabaseComm28: [unexpected error uploading Record.][MySql.Data.MySqlClient.MySqlException: Got error -1 from storage engine

at PRoConEvents.AdKats.SafeExecuteNonQuery(MySqlComma nd command)

at PRoConEvents.AdKats.UploadInnerRecord(AdKatsRecord record)]

Again, I dont know where to begin in fixing that issue.

 

3- What do these numbers represent exactly, One is for a auto player banned via AdKats and the other is a stats diff.

[AUTO] Player Banned / Aimbot [sAR21-60-1815-1094-7171] [AutoAdmin]

[AdKats] INFO: STATDIFF - CENSORED PLAYER NAME - ACWR [1/2][50 DPS][+108%]

Any info on any of the above questions would be appreciated, thanks.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by llB00Nll*:

 

The question of my questions just like his first two sentences you # 6121. Hopefully admin overcome this error :biggrin:

In the first error with the memory warning, I found that restarting the procon layer solved that issue but may only have been a temporary fix.
* Restored post. It could be that the author is no longer active.
Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

@ColColonCleaner

 

Is it possible to make a command to add to the role group like: /rgadd [playername] [rolenumber] [duration]? Example i have a Admin, a VIP roles - Admin is RLE3 | VIP is RLE4

I wanna do some cool stuff with proconrulz and I want to automate process :cool:

Code:

On Say;Text !luckforyou;Say /rgadd %p% RLE4 30d;PlayerSay VIP on 30 days
You can open a paid feature request for that. In the meantime why not use the /reserved command? I assume because you want more than just a reserved slot given to this player, you also want to give him access to commands and such. But if not, and you just want to hand out reserved slots, just use the /reserved command, it's described in the docs.

 

I have looked for the place that I can add VIP slots via AdKats but I honestly dont see where or I dont know what the user list is that you are talking about or what section it may be in. I do know that prior to updating to latest version I am pretty sure I seen the VIP list in there.

 

With the "Feed Server Reserved Slots" off , I can add VIP slots via Procon but with it on , all but the admin names get erased. If you can clarify more on this user list and under what section it is in ( I dont specifically see just a "user list").

 

Thanks

There are two different ways you can add reserved slots to your AdKats instance. The easiest and cleanest way is to just use the /reserved command, it takes in a duration, and a player name (described in the docs), and will give that player a reserved slot for the provided duration. There is a 'verbose' setting section that shows the expiration dates of all the reserved slot people that are given reserved slots this way, it's just a display though, you can't edit it there.

 

The second method is to create a VIP or Reserved user group, and then new people you want to make VIPs must be added to your user list just like your admins are. I assume you know how to add admins and their soldiers, etc; It's the same for VIP or anything else, you just need to add a new role for that. In the role section you can create a new role by typing VIP (or whatever you want to call it) into the create new role field. It will copy the commands from your 'default guest' role, so modify whatever commands you want there. Then go to the 'role groups' section and you will see the new role you just made, assign the reserved slot group to that role. Then give new users you want to make VIP that role. You can set an expiration date on them too, which some people prefer because when people renew their reserved slots/vip status they can just modify the expiration date with the new one, or move them back from guest to VIP.

 

ok, dunno if it is a bug, but sinds last version sudenly we noticed that after map change ALL players are in ONE team.

i checked all setings, but i cant finds the isue.

this even happens when we disabled the multibalanacer (what is still insane slow in balansing)

any ideas?

Check if you have the top player monitor enabled. If so, disable it. Then see if your problem goes away.

 

I have a few more questions in regards to understanding AdKats more.

 

1- I am getting this warning.

 

 

Because my knowledge is limited and I dont know how to deal with the situation im wondering if anyone can share some advice on how to fix the problem.

 

2- I also get this error.

 

 

Again, I dont know where to begin in fixing that issue.

 

3- What do these numbers represent exactly, One is for a auto player banned via AdKats and the other is a stats diff.

 

 

 

Any info on any of the above questions would be appreciated, thanks.

The memory warning is something I had been attempting to combat for some time. How long after initial run of the layer are you seeing that warning?

 

As for the database error, what version of mysql is your database running? After 5.6.12?

 

The numbers for that ban are described in the docs. The last number is hit count total which i don't believe I mention there since it was added without updating the docs.

 

Statdiff messages are from the LIVE anti-cheat system, it checks at the end of every round for statdiffs resulting in aimbot or damage mod bans. Here you can ignore that message, it's showing he got 1 kill with 2 hits which was over the threashold for damage, but without more kills that's not enough for a ban so it ignored the stat. It's added to your logs so in the future when bans do come through you can look back on this for more info.

Link to comment

Originally Posted by llB00Nll*:

 

You can open a paid feature request for that. In the meantime why not use the /reserved command? I assume because you want more than just a reserved slot given to this player, you also want to give him access to commands and such. But if not, and you just want to hand out reserved slots, just use the /reserved command, it's described in the docs.

 

 

 

There are two different ways you can add reserved slots to your AdKats instance. The easiest and cleanest way is to just use the /reserved command, it takes in a duration, and a player name (described in the docs), and will give that player a reserved slot for the provided duration. There is a 'verbose' setting section that shows the expiration dates of all the reserved slot people that are given reserved slots this way, it's just a display though, you can't edit it there.

 

The second method is to create a VIP or Reserved user group, and then new people you want to make VIPs must be added to your user list just like your admins are. I assume you know how to add admins and their soldiers, etc; It's the same for VIP or anything else, you just need to add a new role for that. In the role section you can create a new role by typing VIP (or whatever you want to call it) into the create new role field. It will copy the commands from your 'default guest' role, so modify whatever commands you want there. Then go to the 'role groups' section and you will see the new role you just made, assign the reserved slot group to that role. Then give new users you want to make VIP that role. You can set an expiration date on them too, which some people prefer because when people renew their reserved slots/vip status they can just modify the expiration date with the new one, or move them back from guest to VIP.

 

 

 

Check if you have the top player monitor enabled. If so, disable it. Then see if your problem goes away.

 

 

 

The memory warning is something I had been attempting to combat for some time. How long after initial run of the layer are you seeing that warning?

 

As for the database error, what version of mysql is your database running? After 5.6.12?

 

The numbers for that ban are described in the docs. The last number is hit count total which i don't believe I mention there since it was added without updating the docs.

 

Statdiff messages are from the LIVE anti-cheat system, it checks at the end of every round for statdiffs resulting in aimbot or damage mod bans. Here you can ignore that message, it's showing he got 1 kill with 2 hits which was over the threashold for damage, but without more kills that's not enough for a ban so it ignored the stat. It's added to your logs so in the future when bans do come through you can look back on this for more info.

Thanks for the indepth response, I am running the latest version of AdKats and the memory issue happened only once and by restarting the procon layer it had gone away.

 

I turned back on Feed Server Reserved Slots , I attempt to use the /reserved command while ingame,

 

"/reserved PLAYER 01/30/2017"

"/reserved PLAYER 40d"

"/reserved PLAYER 960h"

 

Also have tried other variations and continue to receive "Invalid Duration", I have read the docs on the reserved command and I figure that the 40d should have atleast worked. Does the player have to be in the server for it to work or can they be offline ? If someone could post the /reserved command for 1 day/1week/1 month I would greatly appreciate it.

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

Originally Posted by ColColonCleaner*:

 

Thanks for the indepth response, I am running the latest version of AdKats and the memory issue happened only once and by restarting the procon layer it had gone away.

 

I turned back on Feed Server Reserved Slots , I attempt to use the /reserved command while ingame,

 

"/reserved PLAYER 01/30/2017"

"/reserved PLAYER 40d"

"/reserved PLAYER 960h"

 

Also have tried other variations and continue to receive "Invalid Duration", I have read the docs on the reserved command and I figure that the 40d should have atleast worked. Does the player have to be in the server for it to work or can they be offline ? If someone could post the /reserved command for 1 day/1week/1 month I would greatly appreciate it.

As with all other commands in AdKats, durations and numerics are entered before names in commands. "I want to give a reserved slot of 40 days to player." "I want to issue a temp ban of 30 days on a player."

 

/reserved 40d PLAYER

Link to comment

Originally Posted by MadSochi*:

 

Need help and advise.

What exactly i need? Look at my pbsvspam.cfg

 

Code:

pb_sv_task 120 1500 admin.yell "You need PunkBuster anticheat to play on this server or you'll be kicked !"

pb_sv_task 240 1500 admin.yell "This is HardCore/HardMode server. So FriendlyFire is ON ! Soldier's HP = 60%"
pb_sv_task 250 1500 admin.yell "HUD/CameraAfterDeath/MiniMap/3dSpotting/MiniMapSpotting/3rdPersonCamera/HealthRegeneration is OFF !!!"
pb_sv_task 260 1500 admin.yell "Feel the REAL BATTLE like in the REAL LIFE !!!"

pb_sv_task 470 1500 admin.yell "If you've been killed by teammate you can punish him for that by entering command !p in chat (!f - forgive)."
pb_sv_task 480 1500 admin.yell "After 5 punishes this idiot will be kicked from server!"

pb_sv_task 675 1500 admin.yell "Server protected by PunkBuster anticheat and Metaban's upload list. Includes CheatDetector/AdKatsInternalHackerChecker/PunkBusterScreenShotEnforcer/PBHackLogger."

pb_sv_task 885 1500 admin.yell "You will be kicked from server for teamkillings !"

pb_sv_task 1095 1500 admin.yell "Tipe !voteban [nickname] [reason] in chat to kick player from server."

pb_sv_task 1305 1500 admin.yell "Players with ping (Latency) higher then 150 will be kicked when server will be close to full slots."
Lets take this part

 

pb_sv_task 240 1500 admin.yell "This is HardCore/HardMode server. So FriendlyFire is ON ! Soldier's HP = 60%"

pb_sv_task 250 1500 admin.yell "HUD/CameraAfterDeath/MiniMap/3dSpotting/MiniMapSpotting/3rdPersonCamera/HealthRegeneration is OFF !!!"

pb_sv_task 260 1500 admin.yell "Feel the REAL BATTLE like in the REAL LIFE !!!"

 

it's 1 YELL message cuted to 3 YELL messages.

First appears at 240 seconds after PunkBuster is started. After 10 seconds appear 2nd part of message and after 10 sec 3rd.

And that order repeating after 1500 seconds after other notifications.

 

I've turned OFF my PunkBuster and with him turnes OFF his pbsvspam.cfg

 

I need to realise this SPAM in any of SpamBot plugins. Please help me. Thanks.

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

Originally Posted by spatieman*:

 

Need help and advise.

What exactly i need? Look at my pbsvspam.cfg

 

Code:

pb_sv_task 120 1500 admin.yell "You need PunkBuster anticheat to play on this server or you'll be kicked !"

pb_sv_task 240 1500 admin.yell "This is HardCore/HardMode server. So FriendlyFire is ON ! Soldier's HP = 60%"
pb_sv_task 250 1500 admin.yell "HUD/CameraAfterDeath/MiniMap/3dSpotting/MiniMapSpotting/3rdPersonCamera/HealthRegeneration is OFF !!!"
pb_sv_task 260 1500 admin.yell "Feel the REAL BATTLE like in the REAL LIFE !!!"

pb_sv_task 470 1500 admin.yell "If you've been killed by teammate you can punish him for that by entering command !p in chat (!f - forgive)."
pb_sv_task 480 1500 admin.yell "After 5 punishes this idiot will be kicked from server!"

pb_sv_task 675 1500 admin.yell "Server protected by PunkBuster anticheat and Metaban's upload list. Includes CheatDetector/AdKatsInternalHackerChecker/PunkBusterScreenShotEnforcer/PBHackLogger."

pb_sv_task 885 1500 admin.yell "You will be kicked from server for teamkillings !"

pb_sv_task 1095 1500 admin.yell "Tipe !voteban [nickname] [reason] in chat to kick player from server."

pb_sv_task 1305 1500 admin.yell "Players with ping (Latency) higher then 150 will be kicked when server will be close to full slots."
Lets take this part

 

pb_sv_task 240 1500 admin.yell "This is HardCore/HardMode server. So FriendlyFire is ON ! Soldier's HP = 60%"

pb_sv_task 250 1500 admin.yell "HUD/CameraAfterDeath/MiniMap/3dSpotting/MiniMapSpotting/3rdPersonCamera/HealthRegeneration is OFF !!!"

pb_sv_task 260 1500 admin.yell "Feel the REAL BATTLE like in the REAL LIFE !!!"

 

it's 1 YELL message cuted to 3 YELL messages.

First appears at 240 seconds after PunkBuster is started. After 10 seconds appear 2nd part of message and after 10 sec 3rd.

And that order repeating after 1500 seconds after other notifications.

 

I've turned OFF my PunkBuster and with him turnes OFF his pbsvspam.cfg

 

I need to realise this SPAM in any of SpamBot plugins. Please help me. Thanks.

i think you need proconrulez for this ^^
* 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.