I remember that it's in SRL_Procs but can't remember how to do it, any help?
I remember that it's in SRL_Procs but can't remember how to do it, any help?
In my repeat I put
Simba Code:SetScriptProp(SP_WriteTimeStamp, [True]);
So my repeat looks like:
Simba Code:repeat
SetScriptProp(SP_WriteTimeStamp, [True]);
FindRock;
until false
Freedtm(IronOre);
FreeBitmap(DropOre);
end.
found: keyword 'TimeStamp'; section: help
result [show code] - snippet author = Dgby714;
Simba Code:function TimeStamp: string;
var
Time: TDateTime;
H, M, S, MS: word;
begin
Time := Now;
DecodeTime(Time, H, M, S, MS);
Result := Padz(IntToStr(H), 2) + ':' + Padz(IntToStr(M), 2) + ':' + Padz(IntToStr(S), 2);
end;
Np, I just learned how to do it yesturday
There are currently 1 users browsing this thread. (0 members and 1 guests)