SCAR Code:
program test;
{.include srl/srl.scar}
const
PlayRunescapeButtonColor=8173521;
HighDetailColor=264526;
MembersWorldColor=10464181;
FreeWorldColor=8435146;
Members=false; //change to true for a members world
procedure PlayRunescape;
begin
if(FindColor(x,y,PlayRunescapeButtonColor,795,245,986,337))then
MoveMouseSmooth(857,279)
ClickMouse(869,280,true)
end;
procedure HighDetail;
begin
MoveMouseSmooth(472,282)
ClickMouse(472,282,true)
end;
procedure WorldSelectFree;
begin
if(Members=false)then
if(FindColor(x,y,FreeWorldColor,494,147,684,268))then
MoveMouseSmooth(585,193)
ClickMouse(585,193,true)
end;
procedure WorldSelectMembers;
begin
if(Members=true)then
if(FindColor(x,y,MembersWorldColor,762,149,938,267))then
MoveMouseSmooth(857,199)
ClickMouse(857,199,true)
end;
begin
PlayRunescape
HighDetail
if(Members=false)then
begin
WorldSelectFree
end else
WorldSelectMembers
end.
This a script that you start at the Runescape home page and it SHOULD click on all the things to get you to the log in page, but it wont work for some reason, it just stops after it clicks on Existing User.
Some help please?
