Jump to content

quintusairborne

Member
  • Content Count

    19
  • Joined

  • Last visited

  • Medals

Posts posted by quintusairborne


  1. I have found a problem with your T-55: as gunner when I zoom in the optic and then zoom out, the reticle disappears. Leaving the vehicle and mounting up again fixes it until you zoom again. Commander sight is not affected.

     

    Really annoying because there is no way of aiming this way... I remember it happened long time ago also with a T-72 possibly from an old RHS build.

    Any way of solving this?

    Screen

    50093018D602939B3F06F3511D34637BC9EAD7CE


  2. apologies but pretty much all these vehicles were never intended for AI usage.

    Yeah, I know. If you find a minute to fix it I'll be glad though. I'm trying to set up a beach defense mission for my group (Team One Tactical) with Takistany army on the Saharani Island, with USMC AI landing. The LCAC is not really indispensable, but it will be really beautiful!

    And tanks a lot for your awesome work! (pun intended ;) )

    Edit: also, you can work on the basis of the script ad pg. 24, wich works fine already for the disembarking part. The real problem is the desire of the IA to drive the ship towards the waypoints with a reasonable degree of "actually getting where I ordered you to" XD


  3. Hi, Somebody help me with AI script (or any information) to load and unload vehicles into LCAC?

    Thank you

    Go on page 24 of this thread, there is a sqf to make the IA unload vehicles. And it works fine in my experience.

    But I have a problem with the IA driving the LCAC itself, it drives 10 m, makes a 90° turn, drives other 10 m in the right direction and keeps going like this. Any way to fix this?

    It's annoying because I'm trying to make it disembark some Hummvees, with said sqf, and the LCAC launces the jeep in the middle of the sea without moving to his waypoints =(


  4. Hello boys.

    I have a problem; I'm making a mission that requires a group of players to gradually fall back in front of waves of enemys, spawned using a sqf script.

    That script works fine, it even loops when I tell him to, while I preview it or I host it without other players; but each time I host it with my friends everything goes to hell. The enemyes spawn in a continuoos river leading to, well, interesting situations, lack of ammunitons and crashes. :confused:

    The problem, as I think I have understand, is in the sleep command, that is ignored while I run in MP that script. It seems not to matter whether I start it in the init file or via trigger.

    Anybody will be so kind to teach me a way to solve this problem? I checked in the forum but I did not find a solution, and I'm pretty new to scripting so I may have made some ridicously simple mistake.

    This is the script I'm working with:

    if (isServer) then {

    waituntil {fallback1};

    while {fallback1} do {

    grp1= Creategroup resistance;

    _Unit1= grp1 createUnit ["zetaborn_alien2",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    sleep 1;

    _Unit2= grp1 createUnit ["zetaborn_alien2",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    sleep 1;

    _Unit3= grp1 createUnit ["zetaborn_alien2",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    sleep 1;

    _Unit4= grp1 createUnit ["zetaborn_alien5",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    _unit1 setunitrank "CAPTAIN";

    _unit1=leader grp1;

    {_x setCombatMode "RED"} forEach units grp1;

    {_x setBehaviour "AWARE"} forEach units grp1;

    sleep 1;

    _wp0 = grp1 addWaypoint [getpos pa_1, 0];

    _wp0 setWaypointType "SAD";

    _wp0 setWaypointSpeed "NORMAL";

    sleep 20;

    grp1b= Creategroup resistance;

    _Unit5= grp1b createUnit ["zetaborn_alien2",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    sleep 1;

    _Unit6= grp1b createUnit ["zetaborn_alien2",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    sleep 1;

    _Unit7= grp1b createUnit ["zetaborn_alien2",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    sleep 1;

    _Unit8= grp1b createUnit ["zetaborn_alien5",[getPos startpoint_1 select 0, getPos startpoint_1 select 1,0],[],0,"FORM"];

    _unit5 setunitrank "CAPTAIN";

    _unit5=leader grp1b;

    {_x setCombatMode "RED"} forEach units grp1b;

    {_x setBehaviour "AWARE"} forEach units grp1b;

    sleep 1;

    _wp0 = grp1b addWaypoint [getpos pa_1, 0];

    _wp0 setWaypointType "SAD";

    _wp0 setWaypointSpeed "NORMAL";

    sleep 90;

    };

    };

    };

    The script is called in the init file:

    fallback1 = false;

    _null = [] execVM "red1.sqf";

    and activated when a trigger sets fallback1 = true.

    And yes, those are aliens, of the Zetaborn mod. Sometimes you need to shoot at something different. :greetings:

×