Results 1 to 4 of 4

Thread: AutoTalker

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

    Default AutoTalker

    just posting here to prove that im trying to learn how to script.
    what script should i make next that will be fairly easy?


    SCAR Code:
    program AutoTyper;
    {.include SRL/SRL.scar}
    Const
    TextToType = 'hello'; //What You Want Your Message To Say

    begin
     ClearDebug;
      WriteLn('AutoTyper');
      WriteLn('MADE BY SNATCH');
      repeat
      Wait(3000+random(500)); //Edit If You Want To Change The Time Between Messages
      TypeSend(TextToType);
      until(false);
    end.

  2. #2
    Join Date
    Jun 2007
    Location
    Minnesota
    Posts
    773
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    PowerMiners are fairly easy

  3. #3
    Join Date
    Mar 2007
    Posts
    3,681
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    make you talker login and start talking randomly is a good update btw

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

    Default

    here's another suggestion for your next update;
    (yes i'd keep developing this script to it's max potential to learn much more)
    use arrays for the messages you want to say (there's quite a few good tuts (message[0],message[1])
    if you use the arrays i'd also advise you to check out the for to do cycle, or
    you might also want to try to say a random a variable (x := Random(10)+1 and then use it on a case statement (that works like a bunch of if then else if statements )
    case x of
    1: TypeSend('something');
    2:TypeSend('otherthing');
    3:TypeSend('anything');

    and finally don't make this "error":
    SCAR Code:
    repeat
    until(false)
    never make unstoppable loops.

    i'd suggest you make a constant at the beginning, something like timesToTalk and make a variable called something like timesTalked
    until (timesTalked => timesToTalk)


    i made this yesterday to buy coal, and used most of the stuff i just told you might want to try. I didn't use arrays.

    SCAR Code:
    program CoalBuyer;
    {.include srl/srl.scar}
    const
    timesToTalk = 500;    //isn't it self explanatory?
    var
    x, mistake, times, price: integer;
    begin
    ClearDebug;
    times := 0;
    mistake := 0;
    price :=0;
    repeat
    x := 1 + random(10);
    case x of
    //you may want to edit some of the messages
    //it will occasionally make a 'typo' as antiban
    1:  Typesend('buying coal');
    2: Typesend('buying coal');
    3: Typesend('buying all coal');
    4: Typesend('buying all coal');
    5:begin
    Typesend('bying col, 150ea');
    price := price+1;
    mistake := mistake+1;
      end;
    6:begin
    Typesend('bying col, 150ea');
    price := price+1;
    mistake := mistake+1;
       end;
    7: begin
    Typesend('buying coal, 150ea');
    price := price+1;
       end;
    8: begin
    Typesend('buying coal, 150ea');
    price := price+1;
       end;
    9: begin
    Typesend ('buying cola');
    mistake := mistake+1;
       end;
    10:begin
    Typesend('byuing coal');
    mistake := mistake+1;
        end;
    end;
    wait(1000+Random(500));
    times := times+1;
    writeln('talked '+IntToStr(times)+' times. Made '+IntToStr(mistake)+' mistakes and said price '+IntToStr(price)+' times')
    until(times >= timesToTalk);
    end.

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

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My First AutoTalker
    By eurostylz in forum First Scripts
    Replies: 13
    Last Post: 02-10-2008, 11:11 AM
  2. First Autotalker
    By 71runemaker in forum First Scripts
    Replies: 3
    Last Post: 07-14-2007, 08:57 AM
  3. autotalker
    By wobbii in forum First Scripts
    Replies: 3
    Last Post: 04-16-2007, 01:48 AM
  4. My AutoTalker
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 10
    Last Post: 03-05-2007, 03:34 PM
  5. need autotalker help
    By Dadeer in forum OSR Help
    Replies: 1
    Last Post: 12-01-2006, 12:12 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
  •