This works, except I would like to know how I could get it to say the player's name.SCAR Code:function DefineLoopDuration: integer;
begin
for I:=0 to HowManyPlayers-1 do
begin
writeln(Players[I].Name + inttostr(Players[I].Integers[0]));
Result := Result + Players[I].Integers[0];
Definition := Result;
end;
Writeln('This loop shall run for '+inttostr(Result) + ' loads over ' +
inttostr(howmanyplayers) + ' players');
end;
