Lol, I think this is a little off topic, but I have a quick question about my findrandoms procedure 
SCAR Code:
Procedure NoRan;
Begin
FindFastRandoms;
FindNormalRandoms;
End;
I have WT-Fakawi's FindFastRandoms function earlier on in my script.
Will this only check if randoms are there, or will this react to the randoms by running away? If It doesn't, then should I do this;
SCAR Code:
Procedure NoRan;
Begin
If (FindFastRandoms) then
Begin
RunAway(RandomDir);
Wait(2000+random(3000));
RunBack;
End;
FindNormalRandoms;
End;
BTW, here is my RandomDir func;
SCAR Code:
Function RandomDir: String;
Begin
Case (random(4)) of;
0: Result:='n';
1: Result:='s';
2: Result:='e';
3: Result:='w';
End;
End;