To increase a variable by one you can do
Simba Code:
Inc(Variable); // Increases the variable by 1
Simba Code:
IncEx(Variable, 28); // Increases the variable by 28
you can use those to keep track of certain variables such as, 'Amount of times banked'. Then after each load, you can call a procedure that does something similar to this.
Simba Code:
procedure ProgressReport;
begin
Writeln('My first amazing progress report');
Writeln('Time running: '+TimeRunning+'');//Time running is a variable automatically set so you don't have to keep track of the time running.
Writeln('Times Banked: '+ToStr(Variable)+'');//ToStr converts the integer to a string.
end;
If needed you can view this tutorial for assitance: http://villavu.com/forum/showthread....rogress+report