Need help with making auto talker

Discussion in 'Scar/Simba Help' started by Da Grim Raper, Dec 21, 2007.

Need help with making auto talker
  1. Unread #1 - Dec 21, 2007 at 8:03 AM
  2. Da Grim Raper
    Referrals:
    0

    Da Grim Raper Guest

    Need help with making auto talker

    i made an auto talker but i dont know how to make it worl in runescape.
    as u can tell ima newbie to scripting.
    Code:
    //lol this is my very first scar scrict i made by bebe's tut
    //at http://www.srl-forums.com/forum/all-one-beginner-t13513.html
    //if ur a noob scripter like me just go bebe's TUT!!!
    
    
    program autotalker;
    
    const
    Text1='Text1 Here';
    Text2='Text wHere';
    Text3='Texth Here';
    
    procedure talkalot;
    begin
    Writeln(Text1);
    wait(500)
    Writeln(Text2);
    wait(500)
    Writeln(Text3);
    wait(500)
    
    end;
    
    begin
    repeat
    talkalot;
    until(false)
    end.
     
  3. Unread #2 - Dec 22, 2007 at 12:05 AM
  4. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    Need help with making auto talker

    Code:
    program autotalker;
    
    const
    Text1='Text1 Here';
    Text2='Text wHere';
    Text3='Texth Here';
    
    procedure talkalot;
    begin
    Writeln(Text1);
    wait(500)
    Writeln(Text2);
    wait(500)
    Writeln(Text3);
    wait(500)
    
    end;
    
    begin
    repeat
    talkalot;
    until(false)
    end.
    Change writeln to SendKeysSilent.

    BUT! That will get you banned very easily, If I were u download and instal SRL, (official download at www.srl-forums.com)

    and then change scriopt to this...

    Code:
    program autotalker;
    {.include SRL/SRL.scar}
    
    const
    Text1='Text1 Here';
    Text2='Text wHere';
    Text3='Texth Here';
    
    procedure talkalot;
     begin
      TypeSend(Text1);
       wait(500)
      TypeSend(Text2);
       wait(500)
      TypeSend(Text3);
       wait(500)
    end;
    
    begin
     SetupSRL;
      repeat
       talkalot;
      until(false)
    end.
    I suggest changing the Wait(500) to something like wait(2000), because 500 miliseconds isnt very much.
     
< need script help ! | need help with this script plz... >

Users viewing this thread
1 guest


 
 
Adblock breaks this site