Results 1 to 11 of 11

Thread: Auto Talker (first)

  1. #1
    Join Date
    Jul 2007
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Talker (first)

    program MrBumAutoTalker;

    procedure RealAutoTalker;
    begin;
    repeat
    wait (5000+random(500)) //Time inbeween types (milisceonds) [recomended (5000+)]
    SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
    until(false);
    end;
    begin
    end.

    There was more but it was too big and didnt do any thing

  2. #2
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    using the scar tags [ scar] [ /scar] { without the spaces }

    SCAR Code:
    program MrBumAutoTalker;

    procedure RealAutoTalker;
    begin;
    repeat
    wait (5000+random(500)) //Time inbeween types (milisceonds) [recomended (5000+)]
    SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
    until(false);
    end;
    begin
    end.


    ///////
    begin
    end.
    ///////
    this is your mainloop. nothing in it, so the script won't do nothing at all. i'm taking a wild guess that you didn't test it

    begin
    RealAutoTalker
    end.

    ok first attempt, go read some tuts and make sure you test your scripts

    ~RMagician

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  3. #3
    Join Date
    Oct 2007
    Location
    MARYLAND
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i would use make a
    const
    message1 = 'Hi'

    then use
    typesend(message1)
    in the procedure

    its better than send keys
    http://www.fenjer.com/adnan/SRL/12/50/AutoAlcher.png
    http://www.fenjer.com/adnan/SRL/21/0/Autominer.png


    33% of the lvl 3 population are autoers.
    Report all of these.
    Autoing the wrong way gets you nowhere in life.

  4. #4
    Join Date
    Jul 2007
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Rasta Magician View Post
    begin
    RealAutoTalker
    end.
    Thanks man works now but it says
    Line 9: [Error] (9:4): Semicolon (';') expected in script
    but script is:
    SCAR Code:
    program MrBumAutoTalker;

    procedure RealAutoTalker;
    begin;
    repeat
    wait (5000+random(500)) //Time inbeween types (milisceonds) [recomended (5000+)]
    SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
    until(false);
    end;
    begin
    RealAutoTalker
    end.

  5. #5
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program MrBumAutoTalker;

    procedure RealAutoTalker;
    begin;
      repeat;
        wait (5000+random(500)); //Time inbeween types (milisceonds) [recomended 50000+)]
        SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
      until(false);
    end;

    begin
      RealAutoTalker
    end.

    after repeat there needs to be a ';'

  6. #6
    Join Date
    Nov 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i like it thxs mate

  7. #7
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    Quote Originally Posted by rikjess View Post
    SCAR Code:
    program MrBumAutoTalker;

    procedure RealAutoTalker;
    begin;
      repeat;
        wait (5000+random(500)); //Time inbeween types (milisceonds) [recomended 50000+)]
        SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
      until(false);
    end;

    begin
      RealAutoTalker
    end.

    after repeat there needs to be a ';'
    o.Ô?? compiled just fine for me with the ';' after begin and after repeat

    SCAR Code:
    program MrBumAutoTalker;

    procedure RealAutoTalker;
    begin
      repeat
        wait (5000+random(500)); //Time inbeween types (milisceonds) [recomended 50000+)]
        SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
      until(false);
    end;

    begin
      RealAutoTalker
    end.

    edit: Mr.Bum, what ou posted compiled too for me, are you sure you have the latest version? 3.12c? sometimes it's just some stupid bug, when i think it is i just open a new client, paste the code and sometimes it works.

    ~RMagician

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  8. #8
    Join Date
    Jul 2007
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Rasta Magician View Post
    o.Ô?? compiled just fine for me with the ';' after begin and after repeat


    edit: Mr.Bum, what ou posted compiled too for me, are you sure you have the latest version? 3.12c? sometimes it's just some stupid bug, when i think it is i just open a new client, paste the code and sometimes it works.

    ~RMagician
    Ty thanks man works perfect now... What you meen by paste the code.. And yes i do have 3.12c

  9. #9
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Um sendkeys will get you banned. Use Typesend('Yourtexthere')
    I do visit every 2-6 months

  10. #10
    Join Date
    Jul 2007
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program MrBumAutoTalker;


    //  ______________________________________________________________________
    // |\/                        *Insturctions*                            \/|
    // |/          Click On RealAutoTalker on the right hand side box        \|
    // |/                                                                    \|
    // |/     Change TYPE HERE to what you want to type eg. glow2:wave:HEY   \|
    // |/                                                                    \|
    // |/       Change the Wait period to time you want (1000 = 1 second)    \|
    // |/                                                                    \|
    // |/                 Set the window to runescape                        \|
    // |/                                                                    \|
    // |/                     Press the play button                          \|
    // |/                                                                    \|
    // |/                         Minimise ASAP                              \|
    // |/\__________________________________________________________________/\|



    procedure Signature;
    begin;
      ClearDebug;
      writeln('               |++          |==     |         | |\      /| ____');
      writeln('               |  ++        |  ==   |         | | \    / |/****\');
      writeln('     /\  /\    |    +       |    +  |         | |  \  /  |\__**/');
      writeln('    /  \/  \   |  ++        |  ==   |         | |   \/   |  /*/');
      writeln('   /        \  |++          |==     |         | |        | /_/') ;
      writeln('  /          \ |*           |  ===  |         | |        |');
      writeln(' /            \|  *         |     + |         | |        |');
      writeln('               |   *        |  ===   \       /  |        |');
      writeln('               |     *      |===      \_____/   |        |       S Auto Talker');
      wait (3000+random(750))
     end;

      procedure RealAutoTalker;
     begin;
    repeat;
      wait (5000+random(500)) //Time inbeween types (milisceonds) [recomended (5000+)]
      SendKeys('TYPE HERE'+chr(13)); //What you will type (in pink)
    until(IsFKeyDown(12));
    end;

      begin;
    Signature;
    end;

    begin;
    RealAutoTalker
    end.

    Full script there can some1 please tell me y my signiture doesnt wanna work

    how do i use TypeSend... Can you change my script and get it to use it?

  11. #11
    Join Date
    Jul 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    do not use senkeys they are very detectable

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My First Auto Talker
    By jacka scar MASTER in forum First Scripts
    Replies: 5
    Last Post: 05-08-2008, 10:59 PM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. 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
  •