Hey guys,
I have somthing like this in my sqf script
FUNCTION = {private[blabla];
while(true) do{somthing};
[b]???if(true) exitWith{}???[/b]
}; //end
[blabla] call FUNCTION;
[balbal] call FUNCTION;
:
:
[blkajd] call FUNCTION;
do i need to insert an exitwith in the end of the function ( like i did in bold ) to let it terminate or does it do that automatically?