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

  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

Hello,

 

Adkats have been working fine but suddenly the procon layer wasen't accessible and with Adkats disabled it was, heres the error from the plugin logs file.

In 3.7 the threads are commanded to restart themselves on forceful abort, this is a cause of procon panic. I need to make a more intelligent system to check for stopped threads. marked as an issue and is being fixed in 4.0.
Link to comment
  • Administrators

Originally Posted by Prophet731*:

 

I'll just keep sharpening my long pointy stick and jabbing at you guys every so often.......lol

shield-10.png

*puts up shield for protection*

 

:P

The developer of the Battlefield Admin Control Panel (BFACP)

For BFACP support please post in the BFACP topic linked above.

Do not contact me via PM on the forums for help with procon. Please make a topic for it. Only PM's I will accept will revolve around any website issues.

spacer.png

Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

We are, but access to that requires plugin permissions, which is just as deadly as giving peeps access to the DB.:woot:

 

I'll just keep sharpening my long pointy stick and jabbing at you guys every so often.......lol

 

 

Thanks,

Hutchew

Do i need to add an unban command :P. I've been trying to avoid that since attempting that on half a million players might get hairy. But i'll give it a shot. One more item to the heap.
Link to comment

Originally Posted by Xjmhd*:

 

In 3.7 the threads are commanded to restart themselves on forceful abort, this is a cause of procon panic. I need to make a more intelligent system to check for stopped threads. marked as an issue and is being fixed in 4.0.

So no way to fix it before next release?
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Xjmhd*:

 

It should only happen very very rarely. When the threads don't finish in time during a shutdown. Is this happening often for you?

Yes it is, every other to 3 days the procon layer won't be accessible and I have to disable the plugin through the config file.
* Restored post. It could be that the author is no longer active.
Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

Yes it is, every other to 3 days the procon layer won't be accessible and I have to disable the plugin through the config file.

Strange...i haven't heard of this issue up until now. Just rebooting the layer doesn't stabilize things for the time being? You have to manually disable through the config every time?

 

I will not be patching 3.7 to find this particular issue though, too much of the code has changed in version 4 for that to be worth it, almost 9000 of the 14000 lines have been changed between those versions. I will however make sure the thread reboot is disabled in 4.0, but will need to add a monitor in case something exits abnormally.

Link to comment

Originally Posted by Xjmhd*:

 

Strange...i haven't heard of this issue up until now. Just rebooting the layer doesn't stabilize things for the time being? You have to manually disable through the config every time?

 

I will not be patching 3.7 to find this particular issue though, too much of the code has changed in version 4 for that to be worth it, almost 9000 of the 14000 lines have been changed between those versions. I will however make sure the thread reboot is disabled in 4.0, but will need to add a monitor in case something exits abnormally.

It normally fixes after a restart but a lot of the time I have to disable it through the config.

 

That is completely understandable even with the plugin crashing the layer sometimes it has made admining a lot better, great plugin :smile:

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

Originally Posted by Hutchew*:

 

Do i need to add an unban command :P. I've been trying to avoid that since attempting that on half a million players might get hairy. But i'll give it a shot. One more item to the heap.

Nope, don't do it. Trust your gut on your prior post.

 

Web admin will be all we need.

 

JabJab...........

 

Hutchew

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

Originally Posted by ColColonCleaner*:

 

Nope, don't do it. Trust your gut on your prior post.

 

Web admin will be all we need.

 

JabJab...........

 

Hutchew

In the time it took you to post this i've already speced out the command :P, and it should operate smoothly. Although the jabbing is still needed for webadmin. :smile:
Link to comment

Originally Posted by Xjmhd*:

 

I read somewhere in either this thread or the original thread for the stats logger that it's after Adkats have been installed the stats pages for the stats logger the chat isen't displayed correctly and someone posted a fix but I am unable to find it. You can see what I'm talking about here http://stats.nicz.dk/ (If you scroll down a bit) any chance someone has the fix?

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

Originally Posted by ColColonCleaner*:

 

I read somewhere in either this thread or the original thread for the stats logger that it's after Adkats have been installed the stats pages for the stats logger the chat isen't displayed correctly and someone posted a fix but I am unable to find it. You can see what I'm talking about here http://stats.nicz.dk/ (If you scroll down a bit) any chance someone has the fix?

myrcon.net/...advanced-in-game-admin-and-ban-enforcer-adkats#entry36804
Link to comment

Originally Posted by Xjmhd*:

 

Run this to fix your issue until 4.0 is released:

 

ALTER TABLE `tbl_chatlog` DROP FOREIGN KEY `tbl_chatlog_ibfk_player_id`;

ALTER TABLE `tbl_chatlog` CHANGE COLUMN `logPlayerID` `logPlayerID` INT(10) AFTER logMessage;

 

The issue is your web-stats page is using a "Select *" Which is miscounting the columns after the new one was added. This moves the column i added to the very end, so your page should work properly after this.

I'm getting this error when trying to run it:

 

Code:

Error
SQL-request:

ALTER TABLE  `tbl_chatlog` DROP FOREIGN KEY  `tbl_chatlog_ibfk_player_id` ;


MySQL returned: Documentation

#1025 - Error on rename of './streamer_bf4/tbl_chatlog' to './streamer_bf4/#sql2-a2c-6f3f9b' (errno: 152)
* Restored post. It could be that the author is no longer active.
Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

I'm getting this error when trying to run it:

 

Code:

Error
SQL-request:

ALTER TABLE  `tbl_chatlog` DROP FOREIGN KEY  `tbl_chatlog_ibfk_player_id` ;


MySQL returned: Documentation

#1025 - Error on rename of './streamer_bf4/tbl_chatlog' to './streamer_bf4/#sql2-a2c-6f3f9b' (errno: 152)
Hmm, the key must already be gone. Just run the second line then.
Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

TESTERS ONLY

 

Updated. 3.9.9.9

 

3.9.9.8 -> 3.9.9.9

Added spectator list feeding, removed thread auto-restarting, and fixed other bugs, changes to experimental tools.

 

Currently the spectator list operates off all soldiers in the user list, but will be changed to only those with player interaction command access.

 

https://raw.github.com/ColColonClean...test/AdKats.cs

Same setup script as 3.9.9.2

https://raw.github.com/ColColonClean...est/adkats.sql

Link to comment
  • Plugin Developer

Originally Posted by ColColonCleaner*:

 

Hey ColColonel think you it´s possible to release a Version with the new Functions as Beta that we can test it and find the faults before you make the real release?

It already is, 3.9.9.9 is now the latest beta release. Be mindful as a tester there still might be errors.
Link to comment

Originally Posted by Narf!*:

 

Guys pm me on how to install this. I did the sql database stuff for my website providerbut i dont know what and where to get teh host name info and port?

Ehm, you're sure that you'll install this? You also need the Stats Logger plugin which also requires a database. Install this first...

 

You should get the hostname from your provider, the port too. If no port is given, try std 3306.

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

Originally Posted by ColColonCleaner*:

 

Guys pm me on how to install this. I did the sql database stuff for my website provider, but i dont know what and where to get the host name info and port?

Narf is correct, you need stat logger installed. Please refer to the installation instructions. Your database hostname might be your website domain, but that all depends on how you implemented it, so we can't tell from this end.

 

By the way, you will rarely get PM help here, the PM system is much harder to navigate and more clunky to use than a thread. Post threads, don't send PMs.

Link to comment

Originally Posted by reutnitzer*:ColColon i have installed the new test version and At Point 8 you have a underpoint for Extra recipen email adresses if i write a adress into they will delet it after a few secons.Also the Links dosent works like your normaly insert but i have delet all the Stars (*) and now it works fine Thanks for it.

BF4 Battlelog Profile

 

BF4Stats Profile

 

AntiCheat, INC. Search

 

Metabans Search

Can you say me what you have change from the .8 to the .9 version please

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

Originally Posted by ColColonCleaner*:

ColColon i have installed the new test version and At Point 8 you have a underpoint for Extra recipen email adresses if i write a adress into they will delet it after a few secons.Also the Links dosent works like your normaly insert but i have delet all the Stars (*) and now it works fine Thanks for it.

BF4 Battlelog Profile

 

BF4Stats Profile

 

AntiCheat, INC. Search

 

Metabans Search

Can you say me what you have change from the .8 to the .9 version please

The stars will come back every 5 minutes, it's due to part of the database setting upload i did months ago and never improved until now. It's fixed in the new version i'll upload later.I'll look into the other error.
Link to comment

Originally Posted by reutnitzer*:

 

The stars will come back every 5 minutes, it's due to part of the database setting upload i did months ago and never improved until now. It's fixed in the new version i'll upload later.

 

I'll look into the other error.

Ehm i have deleted the Stard for more then a hour and there are still deleted

 

And the second thing was my fault i have insert it here

 

here.jpg

 

not here

 

not here.jpg

 

i think it would be better if i can insert it in both for a better userbility :smile:

 

and i think a better name for the extra ... mail is only Free Mail adress ore stufg like that short and yea :smile:

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

Originally Posted by ColColonCleaner*:

 

Ehm i have deleted the Stard for more then a hour and there are still deleted

 

And the second thing was my fault i have insert it here

 

here.jpg

 

not here

 

not here.jpg

 

i think it would be better if i can insert it in both for a better userbility :smile:

 

and i think a better name for the extra ... mail is only Free Mail adress ore stufg like that short and yea :smile:

Alright if it's working then great. Your second issue i can't control, that is procon, not me. It's a collection of many emails if you want, but you only have one needed.
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.