Drax
01-26-2012, 06:43 AM
procedure Resting;
var
s: String;
begin
if not loggedin then exit;
FindNormalRandoms;
Report;
Antiban;
DidRedClick;
begin
if (Not runenergy(50)) then
begin
Repeat
Report;
Until (RestUntil(RandomRange(90,100)));
end;
end;
end;
This procedure was working fine yesterday but today it just does continuous loops for ever. It's like the procedure doesn't know when the energy has reach the set percent.
I was thinking it's a SRL problem, can someone help please.
var
s: String;
begin
if not loggedin then exit;
FindNormalRandoms;
Report;
Antiban;
DidRedClick;
begin
if (Not runenergy(50)) then
begin
Repeat
Report;
Until (RestUntil(RandomRange(90,100)));
end;
end;
end;
This procedure was working fine yesterday but today it just does continuous loops for ever. It's like the procedure doesn't know when the energy has reach the set percent.
I was thinking it's a SRL problem, can someone help please.