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.

×
×
  • 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.