while testing out the form which i made earlier today i noticed that the activity isnt updating in the report
i think it should be changed to
SCAR Code:
procedure MSI_GetReportInfo;
var
skill, i: Integer;
begin
for i:=0 to (HowManyPlayers-1) do
with ProgressReportArray[i] do
begin
if (i=CurrentPlayer) then
begin
skill := MSI_Scripts[MSI_Players[i].Scripts[CurrentScript]].SkillConstant;
ScriptInfo[i].PlayerSkillLevel := GetSkillLevel(skill);
end;
PlayerLoc := MSI_Players[i].Location;
PlayerStatus := MSI_Players[i].Active;
end;
end;
~shut