Allright heres the whole init code of the mission.
Seven groups need instantly get in to the seven higgens boat.
So shometimes error message and some of the soldiers doesnt go in at all.
i havent but anything special to the soldier expect "in cargo" wich though doesnt seem to effect anything in this case.
gindex=0
#Loppi
;// dont know better way to do this...
?(gindex==0):_units = units Group1
?(gindex==1):_units = units Group2
?(gindex==2):_units = units Group3
?(gindex==3):_units = units Group4
?(gindex==4):_units = units Group5
?(gindex==5):_units = units Group6
?(gindex==6):_units = units Group7
index=0
#Loop
_man = (_units select index)
?(gindex==0):_man moveincargo boat1
?(gindex==1):_man moveincargo boat2
?(gindex==2):_man moveincargo boat3
?(gindex==3):_man moveincargo boat4
?(gindex==4):_man moveincargo boat5
?(gindex==5):_man moveincargo boat6
?(gindex==6):_man moveincargo boat7
wsoldiers=wsoldiers+1
index=index+1
?(index<12) : goto "Loop"
gindex=gindex+1
?(gindex<6) : goto "Loppi"
exit