Results 1 to 5 of 5

Thread: My Auto Talke V1.0

  1. #1
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My Auto Talke V1.0

    Here ya go its very simple
    is it any good for a little expansion of a tut that i hav jut started SCAR?



    SCAR Code:
    // Made by 05hartor and Junkj
    // Use the const aorb to swap between two diffrent sentences



    program talk;

    const
    aorb=(''); // a=Text1 b=Text2

    procedure Hello;
    begin
    if(aorb=('a'))then
    begin
    wait(1000)
    writeln('Text1')
    end;
    end;

    procedure Hello2;
    begin
    if(aorb=('b'))then
    begin
    wait(1000)
    writeln('Text2!')
    end;
    end;

    begin
     repeat
       hello;
       hello2;
     until(false)
    end.

    i would just like a little feadback please

  2. #2
    Join Date
    Sep 2006
    Posts
    916
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good job. The one thing is it won't type. Change WriteLn with SendKeys. DONT USE SENDKEYS FOR RS THOUGH! You have been warned :P.

  3. #3
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oh yeah course, althouh it will still auto type, jusy in that debug box thingy

    why not sendkeys?

  4. #4
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well, send keys are detectable by runescape, and it WILL ban you. here I'll change the script up and show you, read the comments i put in it:
    SCAR Code:
    // Made by 05hartor and Junkj
    // Use the const aorb to swap between two diffrent sentences
     
     
     
    program talk;
    {.include SRL/SRL.scar} //you need to include SRL to use TypeSend.
    const
    aorb=(''); // a=Text1 b=Text2
     
    procedure Hello;
    begin
    if(aorb=('a'))then
    begin
    wait(1000)
    TypeSend('Text1') //this sends the keys and presses enter undetectable by runescape.
    end;
    end;
     
    procedure Hello2;
    begin
    if(aorb=('b'))then
    begin
    wait(1000)
    TypeSend('Text2!') //same as above ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    end;
    end;
     
    begin
    SetupSRL;   //you need to setup SRL in main loop, but you don't want it to repeat it so put
     repeat       //it before the repeat like I did.
       hello;
       hello2;
     until(false)
    end.
    and that should get the job done good first script though, keep it up.

  5. #5
    Join Date
    Feb 2007
    Posts
    849
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well i ony made it out of scar, is srl just plugins?

    and can you look at my new thread?

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Your Full Guide to Preparing to Auto [SCAR, SRL, SVN, HowTo Auto]
    By Runescapian321 in forum Outdated Tutorials
    Replies: 71
    Last Post: 10-11-2008, 03:46 AM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. need a good script , auto miner auto banker plz!!
    By samuel in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 11-19-2007, 08:46 AM
  4. Help with auto trade/ auto talker script
    By logik in forum OSR Help
    Replies: 5
    Last Post: 03-16-2007, 11:16 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
  •