Jump to content

jaeger420

Member
  • Content Count

    7
  • Joined

  • Last visited

  • Medals

Everything posted by jaeger420

  1. My server does not write a PID file when starting up with the following parameters: ./arma3server -config=server.cfg -pid=arma3server.pid It's running ArmA 3 1.52 on the latest Ubuntu dist and, otherwise, runs fine. There are no obvious clues in the log but I can post one, if needed. I've double-checked file permissions and tried different paths but the PID file is never created. Has anyone else experienced this issue? Any suggestions on troubleshooting? Should I take this to the bug tracker? Thanks in advance.
  2. I hope some of you might find this useful: https://github.com/Jaegerhaus/BE-RCon-Tools It's a simple, self-contained (no dependencies) script that should run on any host that supports PERL (only tested on Linux). All it does is login, send a command, and disconnect. For example, I use it in my crontab to send restart messages, like so: ./rcon.pl localhost:2302 secret "Say -1 Server will restart in 10 minutes"
  3. jaeger420

    ARMA 3 RCON- Need Help

    Be advised (if you didn't already know) there is already a .NET-based tool called EPM RCon, here: https://forums.bistudio.com/topic/141701-epm-rcon-tool-beta-changelog-and-information/ If you still want to make your own, you could still use the BattleNET library: https://github.com/mvries/BattleNET Or, you could start from scratch with the Battleye RCON protocol spec: http://www.battleye.com/downloads/BERConProtocol.txt What we really need are better Linux RCON and PBO tools!
  4. jaeger420

    [sp/mp] vipx

    VIPX defend extract eliminate Green must defend, Blue must extract, and Red must eliminate the VIP. Play with friends TvT, Co-op, or SP with AI. Features: 10 playable slots: 3 each side + the VIP Short, intense scenarios (10 min timer) Dozens of random locations Virtual Arsenal Ear plugs! Get the latest PBO, grab the source, report issues, or contribute here: https://github.com/Jaegerhaus/VIPX.Altis/releases My group enjoys playing this with the excellent ASR AI, mas, JSRS, and BlastCore. Hope you enjoy it, too - thanks! Edit: check it out by joining remote > altis.jaegerhaus.org
  5. Give your task a name, say "carTask". Then, add a GETIN waypoint for the unit (or you) to a vehicle and add this to the ON ACT: carTask setTaskState "Succeeded"; Hope that helps!
  6. jaeger420

    AI firing at stationary vehicle

    Seems like you could accomplish that with waypoints. Put each unit in a separate group and give them both MOVE (STEALTH) out of the woods. Give one a DESTROY, linked to the HMG (place the waypoint on the vehicle). Give the other a DESTROY, linked to the other truck, and synchronized with a trigger around the roadblock for PRESENT (GUER). Then add a GUARD or some patrol route to both. Hope that helps!
  7. Hi, I just registered but I've been lurking here a loooong time. Maybe I can help. Place a marker called "goto". Then, in your civilian's init, add: this addAction ["Go!", "group (_this select 0) move markerPos ""goto"""]; move(1) basically clears a group's waypoints and adds a new one. You could achieve the same with addWaypoint(2). Keep in mind, addAction(3) is run locally so this won't work in MP as is. Hope that helps! /Jaeger Stupid forum rules, try links here: 1. https://community.bistudio.com/wiki/move 2. https://community.bistudio.com/wiki/addWaypoint 3. https://community.bistudio.com/wiki/addAction
×