i was wondering if there is anyone here that could tell me what to add to a script to make it use SRL anti randoms, and also i would like to add something to make it pick up items based on color, thanks -chunkylover
Printable View
i was wondering if there is anyone here that could tell me what to add to a script to make it use SRL anti randoms, and also i would like to add something to make it pick up items based on color, thanks -chunkylover
For making antirandoms work, make procedure:
SCAR Code:procedure Declareplayers;
begin
HowManyPlayers:=1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer:=0;
Players[0].Name :='Name' //replace with player Name
Players[0].Pass :='Pass' //replace with player Password
Players[0].Nick :='Nick' //replace with player NickName
Players[0].Loc :='';
Players[0].Active:=True;
end;
for using antirandoms makeSCAR Code:procedur Randoms;
begin
FindNormalRandoms;
(other antirandom stuff)
end;
Start main loop using this;
SCAR Code:begin
SetUpSRL;
Declareplayers;
(your stuff...)
end.
For picking items up:
SCAR Code:if(Findobj(x,y,'Name',color,tolerance)then begin
Mouse(x,y,2,2,false)
Clickoption('Name',1)
end;
end;