

muppet1856
Members-
Content Count
82 -
Joined
-
Last visited
Everything posted by muppet1856
-
Heli Crash Site - Admin Config in 1.7.7 for grass circles?
muppet1856 posted a topic in Mod Servers & Private Hives
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. -
US1154 now up-to-date 1.7.7 Yo!
-
How do I enable this? Is it in the mission file?
-
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.
-
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.
-
New OA and BE update brings some goodies for admins
muppet1856 replied to a topic in Mod Servers & Private Hives
So what does the latest BEConfig look like? I have gotten several lines here and there, but a comprehensive look would help. -
I think I got him.
- 1 reply
-
- 1
-
-
HL === Humanitys last=== recruitment
muppet1856 replied to vGxDeltaz's topic in Clan / Group Recruitment
I'm the admin there. Let me know if you have specific concerns I can address. -
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.
-
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
-
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