Jump to content

thec1aw

Member
  • Content Count

    22
  • Joined

  • Last visited

  • Medals

Community Reputation

1 Neutral

About thec1aw

  • Rank
    Private First Class
  1. thec1aw

    2017mod - full conversion mod

    been following this mod since it was announced, im dying to play it :(
  2. thec1aw

    ArmAGeddon

    both servers that show up when i type this IP are stuck on creating...maybe they need a restart?
  3. thec1aw

    GUID tool?

    Any tools out there to easily get your GUID? Currently the only way for players to get whitelisted is to type #beclient guid in a server and manually write it down. I know there are a few for arma 2.
  4. I found this arma 2 batch file and applied it for my needs. @echo off set "arma3=arma3server.exe" set "useless=127.0.0.1" set "becpath=F:\BEC\" set "server1=Arma3 - Port: 2302" set "server1bec=Bec.exe" set "server1beccfg=Config.cfg" set "serverpath1=F:\SteamLibrary\SteamApps\common\Arma3\" set "serverstart1=-ip=74.91.120.149 -port=2302 "-config=server.cfg" "-cfg=basic.cfg" -BEpath=F:\SteamLibrary\SteamApps\common\Arma3\BattlEye -noPause -noSound -nosplash -cpuCount=4 -exThreads=7 :check tasklist | findstr /i Bec.exe > NUL if %errorlevel%==1 goto startserver1 ping %useless% -n 5 -w 1000 > NUL goto check :startserver1 ping %useless% -n 5 -w 1000 > NUL if defined PIDSERVER1 echo %date% %time% Kill %server1% Server... if defined PIDSERVER1 taskkill /f /pid %PIDSERVER1% if defined PIDSERVER1 set "PIDSERVER1=" ping %useless% -n 1 -w 1000 > NUL for /f "delims=" %%l in ('for /f "skip=3 tokens=2" %%p in ^('tasklist /fi "imagename eq %arma3%"'^) do @^<NUL set /p "=%%p "') do ( set "PIDs=%%l" ) echo %date% %time% Starting %server1% Server... cd /d %serverpath1% start /min arma3server.exe %serverstart1% ping %useless% -n 1 -w 1000 > NUL for /f "skip=3 tokens=2" %%p in ('tasklist /fi "imagename eq %arma3%"') do ( echo %PIDs% | find "%%p" > NUL || if not defined PIDSERVER1 set "PIDSERVER1=%%p" ) if defined PIDSERVER1 echo %date% %time% %server1% started with PID: %PIDSERVER1% ping %useless% -n 10 -w 1000 > NUL echo %date% %time% Starting BEC for %server1% Server... cd /d %becpath% start /min "%becpath%" "%server1bec%" -f %server1beccfg% goto check
  5. I've configured Bec to run on my server. However I'm having trouble getting it to run through my batch file so it starts when the server reboots. Does anyone have a working example on how to do this? This is my current *unworking* batch file. ::Made by eRazeri @echo off C:\Windows\System32\mode con cols=50 lines=3 >nul set /a var=0 :start echo Running Server start "" /wait /realtime /affinity FF "F:\SteamLibrary\SteamApps\common\Arma3\arma3server.exe" -ip=74.91.120.149 -port=2302 "-config=server.cfg" "-cfg=basic.cfg" -BEpath=F:\SteamLibrary\SteamApps\common\Arma3\BattlEye -noPause -noSound -nosplash -cpuCount=4 -exThreads=7 set /a var+=1 cls echo Server has crashed %var% times, restarting :: Set path to bec and cd to this directory. set becpath="F:\Bec\" cd /d %becpath% :: start bec start "" "bec.exe" -f Config.cfg goto start
  6. anyone have a working example of a batch file to start the arma 3 server and BEC? I tried this with no luck ::Made by eRazeri @echo off C:\Windows\System32\mode con cols=50 lines=3 >nul set /a var=0 :start echo Running Server start "" /wait /realtime /affinity FF "F:\SteamLibrary\SteamApps\common\Arma3\arma3server.exe" -ip=74.91.120.149 -port=2302 "-config=server.cfg" "-cfg=basic.cfg" -BEpath=F:\SteamLibrary\SteamApps\common\Arma3\BattlEye -noPause -noSound -nosplash -cpuCount=4 -exThreads=7 set /a var+=1 cls echo Server has crashed %var% times, restarting :: Set path to bec and cd to this directory. set becpath="F:\Bec\" cd /d %becpath% :: start bec start "" "bec.exe" -f Config.cfg goto start
  7. Ok, so guys dont name your bans.txt bans.txt XD The file was actually called bans.txt.txt Sometimes I'm surprised I've lived this long.
  8. Still no luck after renaming the folder. I will post my bat and config file. Really dont see why i still get "BE Bans.txt does not exist". ::Made by eRazeri @echo off C:\Windows\System32\mode con cols=50 lines=3 >nul set /a var=0 :start echo Running Server start "" /wait /realtime /affinity FF "F:\SteamLibrary\SteamApps\common\Arma3\arma3server.exe" -ip=74.91.120.149 -port=2302 "-config=server.cfg" "-cfg=basic.cfg" -BEpath=F:\SteamLibrary\SteamApps\common\Arma3\BattlEye -noPause -noSound -nosplash -cpuCount=4 -exThreads=7 set /a var+=1 cls echo Server has crashed %var% times, restarting goto start # This config file is only provided as an example file. # Edit it to sute your needs. # For more info on how to edit this file. use the Readme.txt file or visit http://www.ibattle.org/install-and-configure #-------------------------------------------------------------------------------------------------------- [bec] #-------------------------------------------------------------------------------------------------------- # Set the ip to your server. normaly 127.0.0.1 will be fine. Ip = 74.91.120.149 # Set the port to the server. default port is 2302 Port = 2302 # Set the path to the BattlEye directory that is currently in use by the server. BePath = F:\SteamLibrary\SteamApps\common\Arma3\BattlEye # Set the path to your Admins.xml file containing your admins. Admins = Admins.xml # Set the path to your Commands.xml file. Commands = Commands.xml # Set a name for the directory where the logs will be located. # Do not set a path. only a name. since the logs will be in X:\....\Bec\Log\Name\* LogDir = Server1 #-------------------------------------------------------------------------------------------------------- [Misc] #-------------------------------------------------------------------------------------------------------- # Set the color of the terminal. if not defined. 07 will be used as default ConsoleColor = 0b ConsoleHeight = 45 ConsoleWidth = 175 # Only allow english chars to be typed on the chat. Note, Warnings must be enabled. 0 or more. # Only allow english chars. AsciiNickOnly = True AsciiChatOnly = True # If AsciiChatOnly is set True. you can define none english chars that will be accepted. IgnoreChatChars = æøå # Set the amount of warnings a player will get before kicked. -1 is disabled. 0 instant kick # 1 == one warning on a bad word. next bad word results in kick Warnings = 3 # Kick players who has listed chars in their name DisallowPlayerNameChars = æøå # Max length a player name. kicks players who has to long name. MaxPlayerNameLength = 16 # Set the name of your armaserver.exe if it has been renamed from armaoaserver.exe to something else! # if the exe has its originale name. comment it out. #ServerExeName = F:\SteamLibrary\SteamApps\common\Arma 3\arma3server.exe # Set path to the file containing a list of bad words. Note, Warnings must be enabled. 0 or more. WordFilterFile = BadWords.txt # Set the path to the file containing whitelisted guids. WhiteListFile = WhiteList.txt # Set custom whitelist kick message. Text must be in ascii letters. MAX 58 CHARS. BE only does ascii on messages WhileListKickMsg = you are not whitelisted on this server. # Kick people with offensive names NickFilterFile = BadNames.txt # Set the path to the Scheduer.xml file. #Scheduler = Scheduler.xml # Kick people who are idleing in the lobby, kick will happen after given time, Min time is 90 sec. use 0 to disable this function. KickLobbyIdlers = 180 # If enabled. Bec will create seperate chat files for each channel along with the main file. #ChatChannelFiles = false # Set the amount of Normal players who can connect. Set it to -1 to disable it. # If set to 0 it means only players who are listed in the Admins.xml, (or whatever you call it) will be able to connect to the server. # Quick Example 1: server can holed 50 players. and you want to reserve 5 slots for admins. then set SlotLimit to 45. # Quick Example 2: server can holed 50 players. and you want to reserve 5 slots for admins and 5 slots for friends. then set SlotLimit to 40, # AND edit your admins.xml. ADD in all your frineds guid and remaining data, put them in group example 100. or whatever you feel likt. # by using this method you can give some of your friends some access to some commands if you like. # in general this is works like .Whitelisting X player slots for admins and friends, while leaving the remaining Y slots for public. SlotLimit = -1 # Set the messahe people will get when they try to connect and is not whitelisted. Text must be in ascii letters. MAX 58 CHARS. SlotLimitKickMsg = The Server has reached its player limit. #-------------------------------------------------------------------------------------------------------- [ChatRestriction] #-------------------------------------------------------------------------------------------------------- # Set max amount of chat lines a player is allowed to send for each channel. # Going passed the number will result in kick. -1 is disabled, 0 isntant kick. # If the number is higher than 0 players will be sendt warnings. Lobby = -1 Global = -1 Side = -1 Group = -1 Vehicle = -1 Command = -1 Commander = -1 Direct = -1 #-------------------------------------------------------------------------------------------------------- [ChatSpam] #-------------------------------------------------------------------------------------------------------- # Set max amount of chat lines per channel allowed within given time frame. # Set the values to 0 to disable this function(s) # Quick Example: # Lobby = 5 # Lobby_Time_Lower = 10 # Lobby_Time_Upper = 15 # If the time between each new chatlines from a player is less than CHANNEL_Time_Lower the spam counter increases by + 1. # Consider the CHANNEL (Lobby) as the spam counter. # When a player has (CHANNEL - 1) in spam counting. a warning will be sent to whom it may consern. # If the time between each new chatline from the player is Greater than CHANNEL_Time_Lower and Less than CHANNEL_Time_Upper the spam counter stay as it is. # If the time since the last chatline is greater then CHANNEL_Time_Upper the spamcounter is reset to 1. # To get optimal result play around a bit with the values on your server. Lobby = 3 Lobby_Time_Lower = 3 Lobby_Time_Upper = 5 Global = 0 Global_Time_Lower = 0 Global_Time_Upper = 0 Side = 0 Side_Time_Lower = 0 Side_Time_Upper = 0 Group = 3 Group_Time_Lower = 3 Group_Time_Upper = 5 Vehicle = 0 Vehicle_Time_Lower = 0 Vehicle_Time_Upper = 0 Command = 0 Command_Time_Lower = 0 Command_Time_Upper = 0 Commander = 0 Commander_Time_Lower = 0 Commander_Time_Upper = 0 Direct = 0 Direct_Time_Lower = 0 Direct_Time_Upper = 0
  9. Ah thanks i will try this and report back. Will renaming Arma 3 to Arma3 break future updates etc?
  10. Hello, I've been trying to get this up and running without any luck. When i start BEC i get "BE Bans.txt not found" I've posted my config below. I've created a bans.txt but for some reason it still shows it as not found. Any ideas? # This config file is only provided as an example file. # Edit it to sute your needs. # For more info on how to edit this file. use the Readme.txt file or visit http://www.ibattle.org/install-and-configure #-------------------------------------------------------------------------------------------------------- [bec] #-------------------------------------------------------------------------------------------------------- # Set the ip to your server. normaly 127.0.0.1 will be fine. Ip = 127.0.0.1 # Set the port to the server. default port is 2302 Port = 2302 # Set the path to the BattlEye directory that is currently in use by the server. BePath = F:\SteamLibrary\SteamApps\common\Arma 3\BattlEye # Set the path to your Admins.xml file containing your admins. Admins = Admins.xml # Set the path to your Commands.xml file. Commands = Commands.xml # Set a name for the directory where the logs will be located. # Do not set a path. only a name. since the logs will be in X:\....\Bec\Log\Name\* LogDir = Server1 #-------------------------------------------------------------------------------------------------------- [Misc] #-------------------------------------------------------------------------------------------------------- # Set the color of the terminal. if not defined. 07 will be used as default ConsoleColor = 0b ConsoleHeight = 45 ConsoleWidth = 175 # Only allow english chars to be typed on the chat. Note, Warnings must be enabled. 0 or more. # Only allow english chars. AsciiNickOnly = True AsciiChatOnly = True # If AsciiChatOnly is set True. you can define none english chars that will be accepted. IgnoreChatChars = æøå # Set the amount of warnings a player will get before kicked. -1 is disabled. 0 instant kick # 1 == one warning on a bad word. next bad word results in kick Warnings = 3 # Kick players who has listed chars in their name DisallowPlayerNameChars = æøå # Max length a player name. kicks players who has to long name. MaxPlayerNameLength = 16 # Set the name of your armaserver.exe if it has been renamed from armaoaserver.exe to something else! # if the exe has its originale name. comment it out. #ServerExeName = F:\SteamLibrary\SteamApps\common\Arma 3\arma3server.exe # Set path to the file containing a list of bad words. Note, Warnings must be enabled. 0 or more. WordFilterFile = BadWords.txt # Set the path to the file containing whitelisted guids. WhiteListFile = WhiteList.txt # Set custom whitelist kick message. Text must be in ascii letters. MAX 58 CHARS. BE only does ascii on messages WhileListKickMsg = you are not whitelisted on this server. # Kick people with offensive names NickFilterFile = BadNames.txt # Set the path to the Scheduer.xml file. #Scheduler = Scheduler.xml # Kick people who are idleing in the lobby, kick will happen after given time, Min time is 90 sec. use 0 to disable this function. KickLobbyIdlers = 180 # If enabled. Bec will create seperate chat files for each channel along with the main file. #ChatChannelFiles = false # Set the amount of Normal players who can connect. Set it to -1 to disable it. # If set to 0 it means only players who are listed in the Admins.xml, (or whatever you call it) will be able to connect to the server. # Quick Example 1: server can holed 50 players. and you want to reserve 5 slots for admins. then set SlotLimit to 45. # Quick Example 2: server can holed 50 players. and you want to reserve 5 slots for admins and 5 slots for friends. then set SlotLimit to 40, # AND edit your admins.xml. ADD in all your frineds guid and remaining data, put them in group example 100. or whatever you feel likt. # by using this method you can give some of your friends some access to some commands if you like. # in general this is works like .Whitelisting X player slots for admins and friends, while leaving the remaining Y slots for public. SlotLimit = -1 # Set the messahe people will get when they try to connect and is not whitelisted. Text must be in ascii letters. MAX 58 CHARS. SlotLimitKickMsg = The Server has reached its player limit. #-------------------------------------------------------------------------------------------------------- [ChatRestriction] #-------------------------------------------------------------------------------------------------------- # Set max amount of chat lines a player is allowed to send for each channel. # Going passed the number will result in kick. -1 is disabled, 0 isntant kick. # If the number is higher than 0 players will be sendt warnings. Lobby = -1 Global = -1 Side = -1 Group = -1 Vehicle = -1 Command = -1 Commander = -1 Direct = -1 #-------------------------------------------------------------------------------------------------------- [ChatSpam] #-------------------------------------------------------------------------------------------------------- # Set max amount of chat lines per channel allowed within given time frame. # Set the values to 0 to disable this function(s) # Quick Example: # Lobby = 5 # Lobby_Time_Lower = 10 # Lobby_Time_Upper = 15 # If the time between each new chatlines from a player is less than CHANNEL_Time_Lower the spam counter increases by + 1. # Consider the CHANNEL (Lobby) as the spam counter. # When a player has (CHANNEL - 1) in spam counting. a warning will be sent to whom it may consern. # If the time between each new chatline from the player is Greater than CHANNEL_Time_Lower and Less than CHANNEL_Time_Upper the spam counter stay as it is. # If the time since the last chatline is greater then CHANNEL_Time_Upper the spamcounter is reset to 1. # To get optimal result play around a bit with the values on your server. Lobby = 3 Lobby_Time_Lower = 3 Lobby_Time_Upper = 5 Global = 0 Global_Time_Lower = 0 Global_Time_Upper = 0 Side = 0 Side_Time_Lower = 0 Side_Time_Upper = 0 Group = 3 Group_Time_Lower = 3 Group_Time_Upper = 5 Vehicle = 0 Vehicle_Time_Lower = 0 Vehicle_Time_Upper = 0 Command = 0 Command_Time_Lower = 0 Command_Time_Upper = 0 Commander = 0 Commander_Time_Lower = 0 Commander_Time_Upper = 0 Direct = 0 Direct_Time_Lower = 0 Direct_Time_Upper = 0
  11. Hey guys, would you be interested in working together? Sharing ban lists? This was released about a week ago *SNIP* and is what is wrecking everyones server. EDIT by Deadfast: Link to hax removed.
  12. Is there a way to check for player id=[] ?
  13. New ammo box classnames? I wish there was a easy way to find all these class name changes in one spot :(
  14. Hello, So after the new pub patch came out I added a few B_sniper_F's and O_sniper_F's to my wasteland build. Both the LRR and Lynx were added to the gun stores, along with rangefinders and ghillie suits. Everything works beautifully. The problem I'm having is restarting my mission file. Every 8 hours i log in as admin and do a #mission (mission name) command to restart the mission from bank. The problem is it doesn't want to load the mission. It acts as if it starts the mission, but then sends everyone back to lobby again. I then have to re-log as admin and start the mission before everyone is ready, it then loads the mission fine. Upon reading my rpt file i came up with this: Warning Message: You cannot play/edit this mission; it is dependent on downloadable content that has been deleted. a3_weapons_f_longrangerifles_gm6 Should i add a3_weapons_f_longrangerifles_gm6 to my addons in my mission.sqm? If so, what is the blufor addon text? Any help would be greatly appreciated. Thanks in advance, Claw
×