Well sounds really stupid, but is it me, or are the while loops 'fucked' up?
SCAR Code:While not Bankscreen do
begin;
if ((GetSystemTime - Timer) > 4500) then
Break;
Wait(250+random(250));
end;
Doesn't work.. It only goes trhough the loop once (bankscreen not open).
And no, it doesn't break out because of the timer (tested that alread)..
Now i found out that this is working
SCAR Code:While Bankscreen = false do
begin;
if ((GetSystemTime - Timer) > 4500) then
Break;
Wait(250+random(250));
end;
Am i blind? Or is it really 'broken'.
~Raymond








Reply With Quote







. Scar isn't really strict about ";" but delphi for example is..
.

.




