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.
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 templateCode:program Text; {.include SRL\SRL.scar} procedure login; begin end; begin SetupSRL; login; end.![]()
Thanks!
There are currently 1 users browsing this thread. (0 members and 1 guests)