
Originally Posted by
pure_thief
Awesome, thanks! Will try this out
Edit:
Code:
WaitNotMoving(False);
Didn't work for some reason but
Code:
while IsMoving do Wait(100);
works perferctly. Thanks.
You can also use
Simba Code:
Procedure WaitWhileWalking;
var
X: integer;
Begin
while ismoving do
Begin
Marktime(x);
Repeat
Wait(randomrange(25,75));
Until(FFlag(1)or (Timefrommark(x)>= 25000));
End;
End;
That will repeatedly wait between 25,75 milk seconds before checking the distance from the flag. It will repeat that until you reach the flag distance of 1 or you hit 25 seconds. You can change the distance from the flag by changing E number in FFlag();
Sorry for any stupid errors, I'm on my ipad