geerhedd
04-29-2007, 07:24 PM
Hello all and good morning, im having a progress report problem,
my progress report is working, although not properly. It posts every 45 seconds or so, and i want to slow it down to about 5 or ten minutes. I have it on a repeat. i made a switch (ProgTog: boolean;) and a trigger, (variable Progswitch: integer) in my theiving loop (is a stealer) i have
var
ProgSwitch:integer;
(at the end of theiving cycle)
Progswitch:=progswitch+1;
Function ProgTog:Boolean;
begin
result:=false;
If ProgSwitch > 10 then result:=true
end;
(I then pull pull ProgressReport; out of main cycle and and change it to)
If (Progtog=true) then
begin
ProgressReport;
Progswitch:=ProgSwitch-10;
end;
but after two hours of running, still no report, any ideas what im doing wrong?
any help greatly welcomed, thank you GEERHEDD.
my progress report is working, although not properly. It posts every 45 seconds or so, and i want to slow it down to about 5 or ten minutes. I have it on a repeat. i made a switch (ProgTog: boolean;) and a trigger, (variable Progswitch: integer) in my theiving loop (is a stealer) i have
var
ProgSwitch:integer;
(at the end of theiving cycle)
Progswitch:=progswitch+1;
Function ProgTog:Boolean;
begin
result:=false;
If ProgSwitch > 10 then result:=true
end;
(I then pull pull ProgressReport; out of main cycle and and change it to)
If (Progtog=true) then
begin
ProgressReport;
Progswitch:=ProgSwitch-10;
end;
but after two hours of running, still no report, any ideas what im doing wrong?
any help greatly welcomed, thank you GEERHEDD.