Jump to content

nuxil

Member
  • Content Count

    1606
  • Joined

  • Last visited

  • Medals

Everything posted by nuxil

  1. Hi. Thanks for reporting a posible bug. Now lets me ask you about a few questions. What verison of Bec are you using? Can you Define: "After some uptime"? How long as Bec been running before you see this start happening? Can you Define "Playing Normaly".? I ask this question because. players are seen as "InLobby" until they are fully ingame. "Actuall controlling the character". After the lobby menu, there is the briefing screen. This is also considered as the lobby. But if Bec is actually kicking people who walks around, drive cars etc for Lobby idling there is something wrong. Note: Lets say a player gets a warning in the lobby. 15 secs left to join the mission. If the player now spend more time than 15 sec on loading the mission + get passed the briefing screen. He will get kicked. Are you using any plugins? Can you also send me Bec log files?
  2. Nice. Didnt see this before now. Will try it out as soon as i get time. Reading code that is properly indented is almost as satisfying as like looking at a beautiful woman:) As a request|Idea. What about adding in a class for Sqf compression ? What i mean is, remove all newlines, indents, comments, unnecessary spaces, rename long varnames to shorter ones and so forth. Kind of like a obfuscator. It will be a miniscule performance gain. But optimizing code is always a good thing imo. Example python sqfIndenter.py -i myscript.sqf <-- will ident the code and save it as a new file python sqfIndenter.py -c myscript.sqf <-- will compress the code and save it as a new file
  3. Sorry, open source is not going to happen. "I dont want my code to be raped by a horde of mentally ill people in public domain" Bad joke aside. If you want a open source project you can look into Big Brother.
  4. Im sorry but i have no great solutions for you regarding this issue. Youre on your own on this one. You can try and set your external ip (server ip) in Bec config. Bec used a udp socket to connect to the server and a tcp socket to check for new version & for the reporter accout if enabled. I found some articles regarding socket.error 10013 that you might want to read.. http://msdn.microsoft.com/en-us/library/windows/desktop/ms740668%28v=vs.85%29.aspx#WSAEACCES http://www.wisegeek.com/what-are-the-common-causes-of-socket-error-10013.htm
  5. Do you got some antivirus on the server ? It might be that the antivirus is blocking Bec. I have tried to reproduce this error myself without luck. But after googeling a bit i belive its due on one of two reason. Bec has not enough permissions to use the socket. Bec is getting blocked by an antivirus.
  6. Hmm.. Strange.. what OS is the server using? Do you get this error if you run Bec as administrator?
  7. nuxil

    Can't see all bans

    Its a arma ban not a BE ban. Check your arma root directory for a file called ban.txt I also reccomend that you do not ban on "onHackedData" but change it to this instead in your server.cfg file. onHackedData = "kick (_this select 0)";
  8. This BattlEye debug systemchat spam vomit is nothing i can do about. I agree that there is too much text related to Battleye when people connect. but this has to be directed at BIS & BE. What text people use in their reasons with the scriptban plugin is up to them self. My example was to provide a understanding on how it works in somewhat clear way. For thouse who strugles with BE filters and do not understand them. i found a great link explaining how it works. http://opendayz.net/threads/a-guide-to-battleye-filters.21066/ And why is this info not on the Biki ???
  9. nuxil

    Do donations work for arma modders?

    Its over. We just have to wait for the winners to be announced. So im not sure whats stopping the "real" community to start modding again. Donation can be a good & bad thing. i myself have no mods i have released to the public but i have received some donation for my tool i made. I appreciate the donations i been given, but sometimes i feel its a burden especially when the donation text say something like: Here is 20 buck.. can you please include this & that in next version. It feels like they want to buy a feature with donation and i in someway feel obligated to look at the requested feature since there is money invloved. People should donate because they want to. i think its wrong when people donate because they want you to include this & that in the mod/tool/whatever.
  10. stop surfing gay porn, targeted ads by google based on your surfing habbits/ search keywords :p but, seriouly its fine here aswell
  11. Im not sure what kind of examples i can give you. This is not the best thread on how to create BE filters. But lets assume you have this in your removeexec.txt file. (take out of some verry verry old dayz filters) 5 "disable" !="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';" 1 "init" 1 "server" 5 "compile" 4 "loadFile" 5 "move" !="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';" Now. you can see this we have 4 rules that will Kick and one 2 rules that will just Log. Kicks: Restriction #0 -> 5 "disable" !="this ... Restriction #1 -> 5 "compile" Restriction #2 -> 4 "loadfile" Restriction #3 -> 5 "move" !="this ... Note: im unsure if the 1st rule is Restriction #0 or 1 But anyway with thouse rules set you just open the reasons.py file. scroll down and edit the remoteexec_reason. SERVERS = ["Config.cfg"] ... .. remoteexec_reasons = { "0" : ["Banned for breaking remoteexec filter rule 0", 0], "1" : ["Banned for breaking remoteexec filter rule 1", 0], "2" : ["Banned for breaking remoteexec filter rule 2", 0], "3" : ["Banned for breaking remoteexec filter rule 3", 0], "4" : ["Banned for breaking remoteexec filter rule 4", 0], "5" : ["Banned for breaking remoteexec filter rule 5", 0] ... so on ... } Sorry but i cant make any better examples than this.
  12. @Sharkking, Bec can not control the color of the text ingame. this is done by the game itself. @SpanishSurfer, look at server admin forums. a2 and a3 section on bif. http://forums.bistudio.com/showthread.php?131759-New-BattlEye-features-for-server-admins http://forums.bistudio.com/showthread.php?167504-Regular-Expression-%28Regex%29-Support-for-BE-Filters http://forums.bistudio.com/showthread.php?138736-Introducing-Server-side-Event-Logging-Blocking http://forums.bistudio.com/showthread.php?166050-New-BattlEye-Feature-Mission-specific-Script-Event-Filters There are no other official docs on how to create the filters/ how it works.. Maybe if you google you'll find some examples to a mission.
  13. I have replyed to the email you sent me. Make sure to read the readme file and the reasons.py file as they explain a little how it works.
  14. http://ibattle.org/install-and-configure/configure/#ChatRestriction
  15. @Sandbird. I see youre already using plugin V.0.2, sorry for that i missed it. Can you pm me a BeLog\Be_Date.log file. i want to see your rate of connections. + what settings value(s) you have tried. @kero81. I cant help you with that. Best to ask your hoster about it.
  16. sounds strange. Bec 1.606 & the latest plugin ? any other plugins running?
  17. Youre using a scheduler file of the old type. Please update your file to the new scheduler format.. <job id='n'> <day></day> <start></start> <runtime></runtime> <loop></loop> <cmd></cmd> </job> Check out the scheduler example file and the scheduler faq file provided in the Bec.zip package.
  18. It should look the Server for 120 seconds if you get more than 2 connection within 5 sec. It dosent do that ?
  19. I totaly agree with you on this part. a admin of an server doesnt really got the time to create/update Be filters for N missions. Its basicly a nogo unless you got some guy(s) dedicated to the Be filters. What i like to see if a change in the mind of Mission makers instead. They need to learn and get used to include Be filters with the mission(s) they make. esp if it is a pub.game. I feel like most of mission makers dosent do this. maybe not because the dont want to but becase they cant.. idk, Because there is basicly no documentation on Be filters. sqf has good wiki support. most mission makers hang around there. With Be filters you just get tossed around some file(s) and get told here.. look at mine.. and if youre stupid enough to try em out before looking at em. you end up Uber kicking all players :p or you get told to log it all and end up on n^y gigs of logs to dig in.. If the wiki for had more referaces & examples to on how to set up the filters in the scripting section example commands like setdamage & foreach all the other supported Be fileters It would be more Encuriging idk who knows.. a tool to auto create the Be filters would have been nice tho :p
  20. @Bot , Sorry for my late reply. but i have been real busy and not home the last few days. I have updated Bec to version 1.606 now. Take a look at the changelog and the commans.xml file in the 1.606 zip package. specially id 23 id 24. Take a note on the differance. read my comment just above id 23
  21. Hello. Predefined text messages are not currently supported in the commands.xml file. This is a small things to add in. I'll update Bec a bit later so you set predefined texts. It will work like this. <command id="36"> <name>!rules</name> <group>10</group> <cmd>say</cmd> <time></time> <text>RULE #1 blah blah!, RULE #2: blah blah!, RULE #3: blah blah!</text> <desc>Show rules.</desc> </command> it will work extactly like the current support for say.. execpt that if the <text> tag has text in it. it will use this instead of what you typed on the chat line.
  22. nuxil

    DLC Ads

    I, among many others have no intention of buying it or use the helis, karts etc.. Yet we still get ads stuffed down our throat when we join servers/missions using dlc content. If there was a way to know which server/mission used DLC content before joining i would not complain.
  23. nuxil

    DLC Ads

    Dont call me Bro. i aint your bro or mate... Not to be insulting but i probably "brain" more than you do. No you cant. By default you can not enter the vehicles. You need to bypass this with scripts. Or is something wrong with my arma? so unless you have scripting knowlege you cant use them. Yep thats how i wouldl like it instead of a game full of ads. but thats my optinion. If i wanted extra features i would gladly buy them as a seperate addon/"Dlc" But i have no interest in them, as it is now i get these things forced down my throat if i like it or not. I would gladly stay away from servers utilizing the content if i could. but i have no way of knowing if the server im joining is using DLC content or not.
  24. nuxil

    DLC Ads

    The ad system is just ridiculous in my opinion. I would rather have back the good old lite system. If you go to a random server you never know if the mission maker has included some dlc content. And if they have used some dlc content, you get ads ingame. loading screen ads. "Ads if you start the mission in a one of the helis etc". So you never know if you will get these damn ads when you join a server. Futher more i would not call the current system in Arma3 for DLC. "Downloadable content" This is nothing you can choose to download & buy. You get forced to download these content if you like it or not. They force them upon you, but you can only use them if you pay. I understand that they dont want to split the community. Its like. lets all play together even tho you didnt buy the DLC. Which in my opinion is wrong. I would rather see a proper DLC system. If the server youre trying to connect to runs some DLC content and you dont have it you should not be able to join it. But i guess Bis dont like that since it would mean no ads. "loss of possible income" Im not going to whine to much more about the ads as i dont care that much about them. Nor am i going to buy the DLC's as i dont care much about Arma3 either. I prefere Ad free games ;)
  25. nuxil

    DLC Ads

    We need a Ad-Blocker mod :p
×