Results 1 to 11 of 11

Thread: ok this is simple...how do you repreat the auto-talker stuff?

  1. #1
    Join Date
    Feb 2009
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ok this is simple...how do you repreat the auto-talker stuff?

    i looked in the tutoirals n found out how to repeat commands but what if i have this

    mesage1='this is just message 1 but...'
    message2='wat about this 1?'

    i want it to repeat the message BUT 1 at a time...what about having like...message 2,3,4,5,6, if i want all that aswell? saying 1 at a time? any ideas?

  2. #2
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program New;
    var
      Messages : TStringArray;
      i : integer;

    procedure iType(Text : string; WaitTime : integer; Return : boolean);
    var
      i: integer;
      s : string;
    begin
      s := '~!@#$%^&*()_+ABCDEFGHIJKLMNOPQRSTUVWXYZ{}|:"<>?';
      for i := 1 to Length(Text) do
      begin
        if  pos(Text[i], s) > 0 then
        begin
          KeyDown(VK_SHIFT);
          Wait(WaitTime + Random(15) + Random(50));
        end;
        KeyDown(GetKeyCode(Text[i]));
        Wait(WaitTime + Random(30));
        KeyUp(GetKeyCode(Text[i]));
        Wait(WaitTime + Random(30));
        if  pos(Text[i], s) > 0 then KeyUp(VK_SHIFT);
      end;
      if Return then
      begin
        Wait(10 + Random(30));
        KeyDown(VK_RETURN);
        Wait(10 + Random(30));
        KeyUp(VK_RETURN);
      end;
    end;

    begin
      Messages := ['!hey$$', '!@lol~', 'iM bored!@^^'];

      for i := 0 to high(Messages) do
      begin
        iType(Messages[i], 35, true);
        Wait(60 + random(60));
      end;
    end.

  3. #3
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    wouldnt it be easyer to use something like this?

    begin
    writeln(msg1);
    wait(1000);
    writeln(msg2);
    end.
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  4. #4
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you wanted to write it to the debug box -.-. He wants to type it in Runescape.

  5. #5
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    that was an example.. i was just saying that you can just say one, wait, then say the other
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  6. #6
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yea mine is better, has an array and any amount of messages...

  7. #7
    Join Date
    Nov 2007
    Location
    Chile
    Posts
    1,901
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    To not confuse people, you should start by teaching them SRL functions:
    SCAR Code:
    TypeSend(Message1);


  8. #8
    Join Date
    Feb 2009
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I dont know! I suck at all this stuff, lol sorry.

  9. #9
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I see you spamming a lot Underwear...and why did you say that? You haven't even posted in this thread so what are you talking about? You didn't even ask for anything.

  10. #10
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    to da 0wner, yes it is better, but to advanced for him(no offence)

    and yes your right cazax, i should have used typesend
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  11. #11
    Join Date
    Feb 2009
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ...y do i have alot of ppl spamming in my topic...also THANKS EVERY1 SOO MUCH I LEARN ALOT FROM YOU ALL =] thanks again...lol it looks sooo easy know that i know

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Simple Auto Talker
    By Harbinger in forum First Scripts
    Replies: 5
    Last Post: 01-06-2009, 05:36 AM
  2. simple auto talker
    By m4r1us in forum First Scripts
    Replies: 2
    Last Post: 12-03-2008, 03:22 AM
  3. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  4. Simple Auto Talker
    By camdo2 in forum First Scripts
    Replies: 13
    Last Post: 10-29-2007, 12:01 PM
  5. simple auto talker
    By DillonL in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 08-15-2007, 08:42 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
  •