hi,
First solution:
Use three or four waypoints for enemy squad
- first MOVE waypoint near enemy squad Sync'ed (f5) with UNLOAD wp
- second MOVE wp in a radius of 150-200m around chopper LZ
- Third S&D wp near chopper LZ
- Maybe a CYCLE waypoint after the S&D but not required.
I will try to make a demo later.
Second solutuion:
EDIT: I made a script for insertion IMO more reliable than WPs and synchro. SP/MP compatible.
init.sqs
Code:
nik_unload=false
nik_delete=false
exit
Insertion.sqs
Code:
;******************************************
;Chopper Insertion Script by Nikiller v0.9b
;Unload a group from a chopper.
;contact: nikillerofp@hotmail.fr
;[chopperName,groupName] exec insertion.sqs
;******************************************
_chop = _this select 0
_grp = _this select 1
_units=Units _grp
_lc=local _chop
_i=0
_j=count _units
_chop setCaptive true
_chop setBehaviour "CARELESS"
_chop setCombatMode "BLUE"
_ac="GETOUT"
if (_lc) then {_chop flyInHeight 1; _chop land "get out"}
@ (getPos _chop select 2 < 1.5)
if (_lc) then {_smokes="smokeShellRed" createVehicle (getPos _chop)}
~1
#unload
(_units select _i) action [_ac,_chop]
unassignVehicle (_units select _i)
_i=_i+1
~0.5
if (_j>_i) then {goto "unload"}
~5
nik_unload=true; publicVariable "nik_unload"
if (_lc) then {_chop flyInHeight 100}
@nik_delete
if (_lc) then {} else {exit}
_d=driver _chop
_g=gunner _chop
_all=[_chop,_d,_g]
~5
{deleteVehicle _x} forEach _all
exit
I made a demo for what you want: copper land, unload troops, take off, go away and a group of enemies incoming to LZ.
DEMO LINK
a little explaination:
nik_unload is variable to say that chopper has unloaded troops then you can write in the condition of the first MOVE WP of the enemy squad and the condition of the WP who order chopper to go away nik_unload
nik_delete is variable to delete the chopper when it has done his job then write in the activation of the WP who order chopper to go away nik_delete=true; publicVariable "nik_delete"
Just copy and paste those script in the notepad and save then as .sqs not .txt
Study the demo I uploaded you have everything you need for what you want to do and I think it's more reliable and clear than have synchro and wp.
cya.
Nikiller.