Results 1 to 3 of 3

Thread: Beginner script not working.

  1. #1
    Join Date
    Sep 2006
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Beginner script not working.

    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.

  2. #2
    Join Date
    Aug 2006
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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...

    Code:
    program Text;
    {.include SRL\SRL.scar}
    
    procedure login;
    begin
    
    
    end;
    
    begin
    SetupSRL;
    login;
    end.
    Try again using that above template

  3. #3
    Join Date
    Sep 2006
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Beginner
    By Ejjman in forum Graphics and Multimedia
    Replies: 1
    Last Post: 11-16-2007, 08:56 AM
  2. C++ Beginner Tut
    By Macrosoft in forum C/C++ Help and Tutorials
    Replies: 31
    Last Post: 10-28-2007, 11:15 PM
  3. beginner at scripts,need a bit of help
    By reaper92 in forum OSR Help
    Replies: 18
    Last Post: 06-19-2007, 10:53 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •