PDA

View Full Version : Help with my script



korrybean
12-20-2006, 03:00 AM
I read the script helps (like most of them) in TUT island, and I still cant figure this out:

I decleare procedures and then tell scar in which order to run them, right? So how do i incorparate anti-randoms.

Anti Randoms. From SRL. Can i just include that and forget about it, or do i have to have a couple lines about it while mining or walking or something.

Finding Aubury: My biggest fear. I have ideas about how to find everything else except aubury, simply because the room is usually crowded and usually someone is right above him (cannot capture him).

Thanks to all you scriptors

joey0101
12-24-2006, 11:01 AM
for aubury you will have to use a less full world i think

Da Der Der
12-24-2006, 12:56 PM
To add randomness to your script, it is best to put a repeat loop in all of your procedures. For example.

procedure MineRocks;
begin
if (FindMSColorTol(x, y, RockColor, 15)) then
begin
repeat
MMouse(x, y, 2, 2);
until (IsUpText('Mine'));
Mouse(x, y, 2, 2, False);
ClickOption('Mine', 3);
repeat
AntiRandoms;
OtherAntiRandoms;
AllAntiRandomsYouHave;
until (InvFull);
end;
end;


Hope this helped you on your anti random problem! :)

If I can think of a way to help you solve your Aubury problem, I will post.

- Da Der Der

korrybean
01-15-2007, 10:32 PM
thank you to you both