Jump to content

stanhope

Member
  • Content Count

    1194
  • Joined

  • Last visited

  • Medals

Posts posted by stanhope


  1. Depends on what it is exactly you're trying to do.  Which mission are you playing or are you making one?  If you're making one what exactly do you have in mind for the AI to do?  Is the AI going to be a jtac for a player or for other AI?  Do they need to actually lase the target or is it good enough that a laser is on the target and the AI is looking at that same target?  Is the target stationary or moving?  Is it a building, a vehicle, a group of infantry, ...?

    • Like 2

  2. This is what I used for a while, could probably be written better:

    Spoiler
    
    serverPerfHint = {
            params ["_type"];
    
            private _firstPart = format ["PERFORMANCE (%1): %2 players, %3 AI units,", _type, count allPlayers, count allUnits - count allPlayers];
    
            private _code = {
                params ["_unit", "_firstPart"];
                private _secondPart = format [' Server FPS: (%1/%2 Min/Avg)', diag_fpsMin, diag_fps];
                private _hintText = _firstPart + _secondPart;
                [_hintText] remoteExec ["hint", _unit];
            };
    
            if (_type == "server") then {
                [[player, _firstPart], _code] remoteExec ["spawn", 2];
            };
            if (_type == "headless cleint") then {
                if (isNil "HC1") then {
                    hint "Headless client is not connected";
                } else {
                    [[player, _firstPart], _code] remoteExec ["spawn", HC1];
                };
            };
        };
        
        //Call via:
        ['headless cleint'] spawn serverPerfHint;
        //Or
        ['server'] spawn serverPerfHint;

     

     


  3. You have a mod installed on your server that has a dependency on a vanilla module that doesn't actually exist.  Verify the integrity of your server's files to be sure but I'm pretty sure there just something wrong with the mod you're using.  


  4. 1 hour ago, Arma Smith said:

    Do you need to man the radar and SAM system with your AI for it to work? or does accessing it via UAV then selecting automatic suffice? 

    Technically only the launcher should work.  It'll work rather poorly because it has no datalink to acquire targets but it should work

     

    1 hour ago, Arma Smith said:

    Next to the Sam system does the ammo truck need to be manned with an AI to keep the Sam system loaded?

    I've personally never seen it make a difference whether or not the ammo truck was manned.  I don't think it's required.  In my experience the AI of the launcher isn't going to keep the launcher fully loaded, you'll need to do that manually or through script.

     

    1 hour ago, Arma Smith said:

    Are they hacked much in game play? how are they hacked? how to you stop it?

    Unless you put someone down on the opposite team that is a UAV hacker it's impossible.  I've never really seen UAV hackers in multiplayer so I don' t have much experience with it.

     

    1 hour ago, Arma Smith said:

    It seems that the radar will pick up planes within 16km, is that the range of the missiles too?

    Missiles can shoot further iirc

     

    1 hour ago, Arma Smith said:

    Regarding range, is each grid square 1km on the map?

    Yes

     

    1 hour ago, Arma Smith said:

    Radar placement - Is it better is be in the open, or can I place it between buildings or trees?

    Terrain will definitely block the radar, I've never tested if objects do.

     

    1 hour ago, Arma Smith said:

    Radar dome (active radar) - I take it, it needs to face the best direction to pick up planes. Is that done via UAV? Does an AI person in the radar move it automatically?

    Yes it needs to face in the right direction, it is a UAV and if the AI in the UAV picks up a target they'll center the radar coverage on said target iirc.

     

    1 hour ago, Arma Smith said:

    Passive radar - Is that still used to target aircraft? 

    Passive radar cannot be used by SAM systems to engage enemy aircraft iirc

     

    1 hour ago, Arma Smith said:

    Are radars lit up on planes radars? And thus easy to destroy?

    Yes and if you have a (h)arm yes.

     

    1 hour ago, Arma Smith said:

    Apart from the Sam System, does the radar help any other element for your team? Like provide vehicle placement on the map? or help the the mobile AA tanks locate aircraft? 

    The radar will (if configured to do so) send the data it collects out via datalink.  Any datalink enabled vehicle will receive this data. 

×