Log in

View Full Version : Best FindRandoms function?



Billybob 001
07-03-2009, 02:42 AM
I am currently using this FindRandoms function.


function FindRandoms: Boolean;
begin
Result := FindNormalRandoms;
if (FindFight) then
begin
RunAway('S', True, 1, 5000);
end;
SRLRandomsReport;
end;

The problem is it really blows and never finds randoms. If it does its rare. I have noticed (been gone for over a year) that the randoms have changed and that most randoms just teleport you to there location. Is there a better FindRandoms function for mining than this? Or am I doing something wrong in placing it into my mineloop?

I start my MineLoop procedure off with FindRandoms on the very first line. So there shouldnt be a problem really.

It gets inside the random then clicks the NPCs text. After that it does nothing.

Naum
07-03-2009, 02:45 AM
FindRandoms is called only when it is written on the line :).
I recommend you have it in a procedure :)