Results 1 to 3 of 3

Thread: auto talkr

  1. #1
    Join Date
    Sep 2008
    Location
    UK
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    auto talkr

    program KillerSpam;
    var
    x,y:integer;
    begin
    activateclient;
    repeat
    wait(2000);
    sendkeys('cyan:wave:buyin d axe + 6.780k '+chr(13));
    wait(1000);
    until(false)
    end.


    copy and paste from program to end

  2. #2
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    SCAR Code:
    program KillerSpam;
    var
    x,y:integer;
    begin
    activateclient;
    repeat
    wait(2000);
    sendkeys('cyan:wave:buyin d axe + 6.780k '+chr(13));
    wait(1000);
    until(false)
    end.

    This is what you have now.

    This is what you should have:

    SCAR Code:
    program KillerSpam;
    {.include SRL/SRL.scar}

    begin
      ActivateClient;
      repeat
        Wait(2000 + Random(1500));
        TypeSend('cyan:wave:buyin d axe + 6.780k');
        Wait(1000 + Random(1000));
      until(False)
    end.

    1) You didn't need x and y as variables. You don't even use them
    2) NEVER use SendKeys, TypeSend FTW
    3) To use TypeSend, you must add [scar]{.include SRL/SRL.scar}
    4) ALWAYS have randomness. No randomness = BAN.
    4) Check out your standards
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  3. #3
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    program KillerSpam;
    var
    x,y:integer;
    begin
    activateclient;
    repeat
    wait(2000);
    sendkeys('cyan:wave:buyin d axe + 6.780k '+chr(13));
    wait(1000);
    until(false)
    end.
    also "until false", endless loops are a bad, bad idea. Try;

    Code:
    program KillerSpam;
    var
      Sends : integer;
    
    const 
      HowManyTimes = 20;
    
    begin
    activateclient;
    repeat
    wait(2000);
    sendkeys('cyan:wave:buyin d axe + 6.780k '+chr(13));
    Sends := Sends + 1;
    wait(1000);
    until(Sends > (HowManyTimes - 1))
    end.
    Edit: Its late and i cbb with standards, you get the idea
    Project: Welcome To Rainbow

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Your Full Guide to Preparing to Auto [SCAR, SRL, SVN, HowTo Auto]
    By Runescapian321 in forum Outdated Tutorials
    Replies: 71
    Last Post: 10-11-2008, 03:46 AM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. need a good script , auto miner auto banker plz!!
    By samuel in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 11-19-2007, 08:46 AM
  4. 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
  •