Jump to content

soner

Member
  • Content Count

    70
  • Joined

  • Last visited

  • Medals

Everything posted by soner

  1. Hello Community, being the first RCon tool that has ever been created for DayZ & ArmA, battleWarden is used by thousands of people word-wide and enjoys a high reputation among DayZ and ArmA administrators today. It revolutionized game administration for BI titles and also massively influenced other rcon tools available. If you really want to do serious & professional server administration, start using battleWarden today and be part of a large fanbase! Your support counts! Homepage: https://battleWarden.net Fan- & Support-Page: https://www.facebook.com/solicusoftware Online User Manual: https://battlewarden.net/usermanual/ Video Tutorials: https://battlewarden.net/support/video-tutorials Features at a glance (battleWarden): full support of DayZ, ArmA 2 and ArmA 3 game servers with BattlEye enabled own proprietary, fully functional BattlEye client engine being more robust and faster than any other available clients no runtime environments required (such as .NET), compiled to native machine code making it super fast intuitive, modern and fully DPI aware graphical user interface full Unicode support built-in server manager kicking and banning functionality local player database (SQLite) to keep a record of what is going on on your servers ingame chat suppport Support of administrator names server logs (part of battleWarden:Spy) [NEW] custom actions & triggers [NEW] scripting Interface for advanced tasks [NEW] 64 bit version available [NEW, BETA] Full feature list: http://battlewarden.net/features/ This thread can be considered to be the official place for update news, handy tips and bug reports.
  2. Dear battleWarden users, we have to make an important accouncement regarding battleWarden. As many of you know, battleWarden has been the first choice for administrators running ArmA and DayZ game servers for the last 10 years. While we offered it commercially in the past, we finally decided to make it freeware. This does not mean that future development will proceed slowly. However, we will rely on your support and donations in order to ensure future continuous development.
  3. Hey guys, I am about to release a new version of battleWarden EX and just wanted to let you know that there is a new developer blog post available: http://battlewarden.net/archives/410 If you have any other suggestions or feature requests for the new update do not hesitate to post them here!
  4. Hey guys, I just wanted to post that there is a video tutorial page available for battleWarden: http://battlewarden.net/support/video-tutorials I hope the video tutorials will be of any use for you!
  5. Hello Community, being the first RCon tool that has ever been created for DayZ & ArmA, battleWarden is used by thousands of people word-wide and enjoys a high reputation among DayZ and ArmA administrators today. It revolutionized game administration for BI titles and also massively influenced other rcon tools available. If you really want to do serious & professional server administration, start using battleWarden today and be part of a large fanbase! Your support counts! Homepage: http://battleWarden.net Fan- & Support-Page: https://www.facebook.com/solicusoftware Features at a glance (battleWarden): Supports DayZ, ArmA 2 & ArmA 3 Easy to use server manager Local player database with SQLite support Ingame chat suppport Comprehensive ban support Fully compatible BE client Unicode Support Support of administrator names [NEW] Does NOT depend on .NET or other runtime environments Automation of server logs Custom actions & triggers Scripting Interface for advanced tasks Full feature list: http://battlewarden.net/features/feature-list In addition to that, the Premium version supports battleWarden:Spy enabling you to define own message triggers. This thread can be considered to be the official place for update news, handy tips and bug reports.
  6. I have created a new video tutorial for battleWarden showing on how to use shortcuts for quick connections: Enjoy!
  7. Hey guys, there is a video tutorial available on YouTube explaining the Trigger functionality of battleWarden
  8. Hey guys, I have great news for you. I finally managed to finish the user manual for battleWarden EX: http://battlewarden.net/usermanual Also a new update released. Please see http://battlewarden.net/community/viewtopic.php?f=21&t=618 for more information.
  9. Hey guys, just wanted to notice you that a new XMAS update has been released for battleWarden:RCon EX! Changelog: A new update for the other version will follow fixing the localhost problem! Hope you will enjoy!
  10. Hey guys, a new update (V. 1.2) is out supporting admin names. Also I decided to release the premium features (except battleWarden:Spy) for Non-Premium version. Enjoy! http://dev.withsix.com/projects/rcon/files ---------- Post added at 05:14 PM ---------- Previous post was at 05:13 PM ----------
  11. Dear ArmA/DayZ administrators, today I have to make an important statement regarding the future of battleWarden. As some of you may know, I have no personal use for battleWarden since I am not running any game servers (and never did). After 4 years of developing/maintaining battleWarden and supporting several administrators in using this tool, I have now reached a point that does not allow me to invest any more free time for this project. I am about to finish my study and have to use a huge part of my "free time" to finance it. This does not mean that battleWarden will die. Never! And I really enjoy developing this tool. But since the donations lowered from time to time I really can not affort any more free time. However...I do not want to cancel battleWarden after 4 years and thus thought to start developing an extended version with features that never have been available and offer it for a few bucks. For instance I planned to integrate a scripting system to give you full control over the tool enabling you to script your own actions (like vote kicking, custom automated ban actions, own logging system etc.). I really do not plan to make any "business" with this but to allow me continuing this project besides my engineering study. I hope that you will approve of this idea and not blame me for my decision. Please feel free to comment this! BTW: the development has just begun and the script engine works like a charm. See http://battlewarden.net for a short info on this. I think you guys will love it! Here is an example code that can be executed with the current alpha version: function export Main(str as string) dim banCount as integer Debug "Hey, what's up!" banCount = BEGetBanList() while BENextBanListElement() Print BEGetCurrentBanID() + " : " + BEGetCurrentBanDuration() + " : " + BEGetCurrentBanReason() wend endfunction This code goes through all the bans and outputs them in the debug console. Regards Soner
  12. Hey Foxhound, thanks for updating the page!
  13. Hey guys, a new update was released! The ingame colors are back, bugs were fixed and some new variables for bW:Spy were added. The spy module is now also able to play sounds! http://battlewarden.net/downloads/
  14. Sounds good. Put your suggestion here: https://dev-heaven.net/projects/rcon/issues .
  15. An example was given in my previous post:
  16. Hi FelixLegion, thanks for your kind words. I will try to implement every reasonable feature request in my free time. So do not hesitate to post them here!
  17. What exactly is confusing you? The bwspysettings.ini is the only file to access the bW:Spy interface. It's declarative so it does not look like there are any commands. If you want to add your own trigger just add a new sub-class within the Triggers class. This one could look like this: class trigger3{ Type="Chat"; Pattern="[a-z]c[a-z]"; Title="bW:Spy"; Message="Triggered"; Call=" "; // this parameter takes a URL, you can use <Base64Content> as a variable }; So what's this code doing? First we have to define a class name. In this case it's trigger3. You can choose any class name you want. It really does not matter whether you are using trigger as a prefix or not. You can also name your class "dummy". Within this class we have several parameters to set up our new trigger. Type is the type of data you want to trigger. It can be "Chat" or "Log". In this case it will only trigger chat messages. So every message you can see in the Log tab will just be ignored. The next parameter Pattern takes a regular expression ( http://en.wikipedia.org/wiki/Regular_expression ). So bW:Spy will trigger all chat mesages which contain a string in the format [a-z]c[a-z], for instance acu. Title and Message are parameters for the systray popup. Leave them empty if you do not want battleWarden to display any popup. And finally, the most important parameter is Call. Call takes a URL and you may use <Base64Content> as a variable within the URL, for instance: http://www......com/bwspywebinterface.php?id=<Base64Content> whereas <Base64Content> is the WHOLE message triggered and base64 encrypted. If you are familiar with PHP you can use base64_encode in order to decrypt the content and process it (note that the resulting string is UTF8 encoded).
  18. As stated here: https://twitter.com/solicus?utm_source=fb&utm_medium=fb&utm_campaign=solicus&utm_content=334353544129966080 I am going to release the Premium Version today. It will then be available here: https://www.facebook.com/solicusoftware/app_190322544333196 @redshirt_ensign: no problem. ;) Edit: The Premium Version has been released. Have fun!
  19. Nice sarcasm. ;) No, they do not need to do this. :D
  20. Hey guys, I am pleased to announce the release of battleWarden 1.1 which can be considered to be one of the most important updates since the first version of ArmA 2 RCon. Besides several fixes and new features it now also supports the battleWarden:Spy module which is part of the battleWarden package. battleWarden:Spy is basically an extension for the RCon tool (so there is no stand-alone version) and does support two very important features for admins: Logging and Triggering It is capable of saving all data received from the BE server in a very flexible way. So for instance you are able to define your own file, date and time masks (see bwspysettings.ini). The data is stored in simple text files for reasons of easiness. But the most important feature is definitely Triggering. This allows you to define your own triggers for both Log and Chat messages. Thereby you can make battleWarden react in several ways like displaying a popup in the systray. But you are also able to send the data triggered to a web interface via the Call parameter (a manual regarding this will follow). So bW:Spy is a very powerful tool enabling you to do virtually everything you want with the data provided by the server. You could create a mail system which informs you via mail when a message is triggered. You can even create your own online (player) database. So there are infinite possibilities as long as you are familiar with PHP. Defining the trigger text patterns is also very powerful as bW:Spy is using regular expressions (see Pattern parameter in bwspysettings.ini). I hope that you will LOVE this update! Changelog: https://dev-heaven.net/versions/1444 Bug reporting: https://dev-heaven.net/projects/rcon/issues Download: http://battlewarden.net/downloads/ BTW: battleWarden has a new sponsor: http://www.sigclan.com/
  21. I do not use .NET for battleWarden (I am also using my own BE client which was released long time before BattleNET) so I assume that you address the EPM developer. But that is a point that should definitely be considered as otherwise one is violating the MySQL license.
  22. Because I also wanted to integrate MySQL in the past but noticed the license forces you to make your application open source.
  23. Looks nice but the GUI remembers me of battleWarden. :p May I ask whether you are using a MySQL DB for the global player database?
  24. Hey guys, I am going to start working on the next battleWarden release in the next days and still looking for some nice feature requests. So if you have got any ideas do not hesitate to post them here!
  25. No! :) Not natively as it is a Windows application. But if there is huge demand I will start working on a Linux version.
×