Jump to content

muppet1856

Members
  • Content Count

    82
  • Joined

  • Last visited

Everything posted by muppet1856

  1. I can't find where to make the change needed to allow the grass circles in my mission file. Is there something missing? The mission generator doesn't include it and there is no placeholder int he mission file.
  2. muppet1856

    DayZ Mod 1.7.7 Patch

    US1154 now up-to-date 1.7.7 Yo!
  3. muppet1856

    DayZ Mod 1.7.7 Patch

    How do I enable this? Is it in the mission file?
  4. muppet1856

    US 1154 Possible Hacker

    Okay, let me end all of this now. I am the owner/admin on 1154. You still get kicked on my server for heli-crashes. That happens and it is a known thing. I favor being too strict at the expense of convenience - It protects the legit players at a small penalty. 2 - it is well known to me that there is a group of people who have/had a helicopter and were using it to raid camps. If you're "WAY OFF" the map, you're in an easy place to get seen from a heli. I typically troll the edge of the map for epic gear. There are two basic rules you need to remember when playing DayZ - Trust no-one and never get attached to your gear.
  5. AH is only bans people that BattlEye detects through the filters (or rules as stated earlier). These appear in the log files. All AH does is scan the files for certain patterns. If BE doesn't log the pattern, it doesn't get taken care of.
  6. Glad you like it. I'm sorry that you filters are not set correctly. Maybe you could try to be slightly more constructive and we could address your problems. Anti-Hax is a good foundation for preventing hacking, but is only one aspect of protection and is not a substitute for being a good admin. Are you running vanilla DayZ? Or are you running a private hive/bliss? Did you download the latest CBL? With AH, you need to make sure you are filtering correctly to prevent false positives. The reality is that you kicked yourself by not managing your filters and AH simply bans anyone who gets kicked by the filters.
  7. So what does the latest BEConfig look like? I have gotten several lines here and there, but a comprehensive look would help.
  8. Does zap give you console access to the server? Did you update your config.cfg to include the rcon password? I had to actually login to the ip of the server as opposed to the local address...
  9. I'm not sure what to do with this. I am running the latest everything and not having any issues. Are you using the latest filters? I have no other reports of this as a problem? Are you running vanilla DayZ or another mod?
  10. Not a lot I can do to help you... You need to post in the Server General area. This probably will go unnoticed by the admin there.
  11. muppet1856

    Cheater/Hacker on US 1154

    I think I got him.
  12. Customize the message? Maybe. I'll look at it. It wouldn't be hard.
  13. muppet1856

    HL === Humanitys last=== recruitment

    I'm the admin there. Let me know if you have specific concerns I can address.
  14. Yeah, that figure may be a bit aggressive, especially if you don't regularly clean your logs. I would recommend putting it to 60 and leave the rest alone. That will likely take care of it. Are you using BEC or anything to restart your server on a schedule? You could add those lines to your batch file.
  15. I'll look into the code to see why that would happen. It shouldn't be by design, so if it is, it's broken. Unfortunately, I won't be rolling an update tonight but I plan on rolling one at some point this week. I've been on a real tear at work and couldn't find time to do an update.
  16. Wow - you need prozac. Notice the part where it never finishes pass 1. Thats cuz your l337 server is not getting done with pass one in 30 seconds. The whole point is to ban people before they can get back in to cause more havoc. Fortunately for you, 60 seconds is fine. So reset it. You may also want to look at the size of your logs. If they are really long, then you won't get through them in 30 seconds, 60 seconds, or even an hour, depending on how long its been since you cleaned house. No sense keeping logs older than a week. I rotate mine each server restart. See the following batch: @echo off set debug=0 set servername=** You need to put something here ** ** like a directory name ** **like NoHaxor or whatever the subdirectory you put it in** for /f "tokens=1-8 delims=.:/-, " %%i in ('echo exit^|cmd /q /k"prompt $D $T"') do ( for /f "tokens=2-4 delims=/-,() skip=1" %%a in ('echo.^|date') do ( set dow=%%i set mm=%%j set dd=%%k set yy=%%l set hh=%%m set min=%%n set sec=%%o set hsec=%%p ) ) :: ensure that hour is always 2 digits if %hh%==0 set hh=00 if %hh%==1 set hh=01 if %hh%==2 set hh=02 if %hh%==3 set hh=03 if %hh%==4 set hh=04 if %hh%==5 set hh=05 if %hh%==6 set hh=06 if %hh%==7 set hh=07 if %hh%==8 set hh=08 if %hh%==9 set hh=09 :: assign timeStamp: :: Add the date and time parameters as necessary - " yy-mm-dd-dow-min-sec-hsec " set dtStamp=%yy%%mm%%dd%_%hh%-%min%-%sec% set MYTIME=%hh%-%min%-%sec% cls echo (%date%) (%time%) Starting Log Rotation. IF NOT EXIST %servername%\Logs ( Mkdir %servername%\Logs ) IF EXIST %servername%\arma2oaserver.RPT ( Echo Copying arma2oaserver_%dtStamp%.RPT mkdir %servername%\Logs\%dtstamp% move %servername%\arma2oaserver.RPT %servername%\Logs\%dtstamp%\arma2oaserver_%MYTIME%.RPT del %servername%\arma2oaserver.RPT if %debug% == 1 ( pause ) ) IF EXIST %servername%\arma2oaserver.mdmp ( Echo Copying arma2oaserver_%dtStamp%.mdmp mkdir %servername%\Logs\%dtstamp% move %servername%\arma2oaserver.mdmp %servername%\Logs\%dtStamp%\arma2oaserver_%MYTIME%.mdmp del %servername%\arma2oaserver.mdmp if %debug% == 1 ( pause ) ) IF EXIST %servername%\arma2oaserver.bidmp ( Echo Copying arma2oaserver_%dtStamp%.bidmp mkdir %servername%\Logs\%dtstamp% move %servername%\arma2oaserver.bidmp %servername%\Logs\%dtStamp%\arma2oaserver_%MYTIME%.bidmp del %servername%\arma2oaserver.bidmp if %debug% == 1 ( pause ) ) IF EXIST %servername%\server_console.log ( Echo Copying server_console_%dtStamp%.log mkdir %servername%\Logs\%dtstamp% move %servername%\server_console.log %servername%\Logs\%dtStamp%\server_console_%MYTIME%.log del %servername%\server_console.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\scripts.log ( Echo Copying scripts_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\scripts.log %servername%\Logs\%dtStamp%\scripts_%MYTIME%.log del %servername%\Battleye\scripts.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\remoteexec.log ( Echo Copying remoteexec_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\remoteexec.log %servername%\Logs\%dtStamp%\remoteexec_%MYTIME%.log del %servername%\Battleye\remoteexec.log copy NUL %servername%\Battleye\remoteexec.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\createvehicle.log ( Echo Copying createvehicle_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\createvehicle.log %servername%\Logs\%dtStamp%\createvehicle_%MYTIME%.log del %servername%\Battleye\createvehicle.log copy NUL %servername%\Battleye\createvehicle.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\publicvariable.log ( Echo Copying publicvariable_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\publicvariable.log %servername%\Logs\%dtStamp%\publicvariable_%MYTIME%.log del %servername%\Battleye\publicvariable.log copy NUL %servername%\Battleye\publicvariable.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\setpos.log ( Echo Copying setpos_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\setpos.log %servername%\Logs\%dtStamp%\setpos_%MYTIME%.log del %servername%\Battleye\setpos.log copy NUL %servername%\Battleye\setpos.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\setdamage.log ( Echo Copying setdamage_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\setdamage.log %servername%\Logs\%dtStamp%\setdamage_%MYTIME%.log del %servername%\Battleye\setdamage.log copy NUL %servername%\Battleye\setdamage.log if %debug% == 1 ( pause ) ) IF EXIST %servername%\Battleye\mpeventhandler.log ( Echo Copying mpeventhandler_%MYTIME%.log mkdir %servername%\Logs\%dtstamp% move %servername%\Battleye\mpeventhandler.log %servername%\Logs\%dtStamp%\mpeventhandler_%MYTIME%.log del %servername%\Battleye\mpeventhandler.log copy NUL %servername%\Battleye\mpeventhandler.log if %debug% == 1 ( pause ) ) echo (%date%) (%time%) Ending Log Rotation. if %debug% == 1 ( Pause ) TIMEOUT /T 3 cls
  17. Nope. You have that right. You need to get the latest version of AH though. Specific bug fixes are already integrated to address this.
  18. I appreciate the feedback. What version are you using so we can fix it?
  19. Just to recap - it appears that you have 30+ days of logs. You need to get that under control and AH will not be such a burden. I recommend you use a batch file or something to rotate your logs.
  20. Can you send me the logs, bans.txt, filters, and lst files you are using? You can submit them in an issue on the Anti-Hax Site. Just zip them up first.
  21. I think I've correctly adjusted this... Thanks for the catch.
  22. So, I had a request for a feature in AntiHax, but I felt it was necessary to make it a standalone executable. So it will take all your bans.txt files and combine them. This is really for hosters who have multiple DayZ servers on one machine. It essentially monitors the bans.txt for changes and will update all of them. It comments the ban by telling you which Ban File it read across from, so you can trace it back. It is pretty indiscriminate, if you are banned in one bans.txt, you're banned in all. Link to exe and source: http://dayz-anti-hax.googlecode.com/files/BanListMerge.zip
  23. What was it before? I know we are adding some overhead with RCON and the additional log files.
  24. It poses a few problems, but I can look at it. Can you add it as an issue to the site? http://code.google.com/p/dayz-anti-hax/
×