Hey, welcome to the forum! Im glad you have decided to larn to script! It is obvious that you have been reading
Thank you!
Ok, to find randoms you need to do two things.
You need to call Fawkis "findfastRandoms" method, and you need to call SRLs "findNormalRandoms"
Most people make a method like
SCAR Code:
PROCEDURE FindRandoms; //Guesse who? Fawki!
BEGIN
FindNormalRandoms;
FindFastRandoms;
// if(FindFight)then RunAway;
IF Findname THEN
BEGIN
FindTalk;
END;
END;
to do all that for them.
then what they do is call that method every so often. (it will only chek for randoms when it is called)
so mabey between each of your methods add findrandoms;
good job on what you have so far! wish i could test.
edit: oh, its good you have methods and stuff, but a more discript method name would help me be able to read through it faster, but thats all personal preference.