Would someone please tell me why this doesn't work? Thanks
Code:program Text;
{.include SRL\SRL.scar}
procedure login;
begin
SetupSRL;
ClickText('Existing user', 357, 242, 955, 575)
end;
begin
SetupSRL;
end.
Printable View
Would someone please tell me why this doesn't work? Thanks
Code:program Text;
{.include SRL\SRL.scar}
procedure login;
begin
SetupSRL;
ClickText('Existing user', 357, 242, 955, 575)
end;
begin
SetupSRL;
end.
Ok, first off
You have setupSRL; twice, you only need it once, in your main loop..
Secondly the procedure ClickText clicks Runescape in game text, not just random text on the front page ;)
And lastly, you havent added login; to your main loop...
Try again using that above template :cool:Code:program Text;
{.include SRL\SRL.scar}
procedure login;
begin
end;
begin
SetupSRL;
login;
end.
Thanks!