RPT Error in create waypoint

Code:
 7:33:05 Error in expression < 10];
};
};
sleep 0.5;
};

_wp1 = _grp addWaypoint [_pos, 0];
_wp1 setWaypointT>
 7:33:05  Error position: <addWaypoint [_pos, 0];
_wp1 setWaypointT>
 7:33:05  Error 64 elements provided, 3 expected
 7:33:05 File z\addons\dayz_server\DZAI\compile\BIN_taskPatrol.sqf, line 165

Just updated to the version on Github last night and found this in my rpt this morning.
 
Fixed, redownload DZAI from Github or make the change yourself by editing /spawn_functions/respawnBandits.sqf:

Replace this near line 59:
Code:
_nul = [_unitGroup,_spawnPositions] spawn DZAI_BIN_taskPatrol;

With this:
Code:
_nul = [_unitGroup,(getPosATL _trigger),_patrolDist] spawn DZAI_BIN_taskPatrol;
 
Back
Top