Results 1 to 2 of 2

Thread: Randomizing typesend help!

  1. #1
    Join Date
    Oct 2007
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Randomizing typesend help!

    ok i made an autotalker tat allows multiple words and i did this to decrease the possibility of being detected soooo I was wondering if it is possible to have SCAR just randomly pick a sentence put in to the script. For Example:

    Code:
    const
    Talk='Text Here';
    Say=' Type Text Here';
    Talk2='More Text Here';
    Say2=' Put Text Here';
    is it pssible to have SCAR just randomly choose Say then Say2 and type them then g to Talk2 Then Talk??

    for example have it write:

    Code:
    Type Text Here
    then
    Put Text Here
    then
    More Text Here
    then
    Text Here
    Then once finished with that command repeats it but this time randomly does:


    Code:
    Put Text Here
    then
    Text Here
    then
    Type Text Here
    then 
    More Text Here
    What do I have to do to get SCAR to do something like that (randomly choose a sentence and type it)?? If you can tell me Id really appreciate it =)

    You Guys Are Lucky Im Going To Have To Give A Sneak Peek Of My New Script lol

    Code:
    //LevExidus AutoTalker V.3
    //For The Newbies Out There Feel Free To Use This To Learn How To Script.
    program AutoTalker;
    {.Include SRL/SRL.Scar}
      // if you want to only have a certain
      //amount of text just keep them blank.
      //to prevent you from being detected i suggest
      //you dont change the TWait. For better
      //protection make it higher.
    const
      Talk = 'Text Here'; //what to say
      TWait = 2000; //time to wait after typing
      Say = 'More Text Here'; // Second Text
      Talk2 = 'More Text Here'; //Third text
      Say2 = 'More Text Here'; // Fourth Text
      TalkAgain = 'More Text Here'; // Last Text (Fifth)
    
    procedure TalkOn;
    begin
      repeat //Reapeats the following:
        Wait(TWait + random(700));
        case 1 + Random(5) of
          1: typesend(Talk);
    
          2: typesend(Say);
    
          3: typesend(Talk2);
    
          4: typesend(Say2);
    
          5: typesend(TalkAgain);
      until (false); //False = never ends.. Ends Repeat.
    end;
    
    begin //BEGINS
      repeat //Repeats The Foloing:
        TalkOn; // Does everything in procedure TalkOn;
      until (false) //keeps going Forever.. Ends Repeat.
    end. //End of Script
    Ok Now I Was Tryng To Test The Script But I Kept Getting This Error about until(false):
    Failed when compiling
    Line 32: [Error] (14713:1): Syntax error in script

    Any Idea Cuase I Don't Got One
    http://bux.to/?r=jvwarrior Get Free Money For RunescapeGP/Membership!

    http://www.AWSurveys.com/HomeMain.cfm?RefID=jvwarrior Get More Money For Runescape GP/Membership Free! I Mean woa!

    http://i34.servimg.com/u/f34/11/52/00/62/hasdfs10.jpg

  2. #2
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    //LevExidus AutoTalker V.3
    //For The Newbies Out There Feel Free To Use This To Learn How To Script.
    program AutoTalker;
    {.Include SRL/SRL.Scar}
      // if you want to only have a certain
      //amount of text just keep them blank.
      //to prevent you from being detected i suggest
      //you dont change the TWait. For better
      //protection make it higher.
    const
      Talk = 'Text Here'; //what to say
      TWait = 2000; //time to wait after typing
      Say = 'More Text Here'; // Second Text
      Talk2 = 'More Text Here'; //Third text
      Say2 = 'More Text Here'; // Fourth Text
      TalkAgain = 'More Text Here'; // Last Text (Fifth)

    procedure TalkOn;
    begin
      repeat //Reapeats the following:
        Wait(TWait + random(700));
        case 1 + Random(5) of
          1: typesend(Talk);

          2: typesend(Say);

          3: typesend(Talk2);

          4: typesend(Say2);

          5: typesend(TalkAgain);
        end;
      until (false); //False = never ends.. Ends Repeat.
    end;

    begin //BEGINS
      repeat //Repeats The Foloing:
        TalkOn; // Does everything in procedure TalkOn;
      until (false) //keeps going Forever.. Ends Repeat.
    end. //End of Script

    Enjoy.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. TypeSend
    By nhstarter10 in forum OSR Help
    Replies: 4
    Last Post: 12-20-2008, 01:18 AM
  2. Randomizing Bank Paths
    By ron1337 in forum News and General
    Replies: 6
    Last Post: 11-02-2008, 12:41 AM
  3. Randomizing Integers
    By daw_guy in forum OSR Help
    Replies: 15
    Last Post: 01-13-2008, 12:14 PM
  4. the need for randomizing minimap/camera movements?
    By lvlrdka22 in forum News and General
    Replies: 0
    Last Post: 01-22-2007, 01:42 AM

Posting Permissions

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