Results 1 to 5 of 5

Thread: Simple help needed.

  1. #1
    Join Date
    Oct 2008
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Simple help needed.

    I need a script that will do the following:

    Type:

    / then a number that increments each loop from 0-12

    And repeats.

  2. #2
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    so you want it to do this?:

    [code]
    /0/1/2/3/4/5/6/7/8/9/10/11/12/0/1/2/3/4/5/6/7/8/9/10/11/12

    etc?

  3. #3
    Join Date
    Oct 2008
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TViYH View Post
    so you want it to do this?:

    [code]
    /0/1/2/3/4/5/6/7/8/9/10/11/12/0/1/2/3/4/5/6/7/8/9/10/11/12

    etc?
    Yes, but after every /number it hits enter. so like:

    /0 enter /1 enter ... /12 enter repeat etc..

  4. #4
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program New;
    {.include SRL\SRL.scar}

    var
      i: Integer;

    begin
      repeat
        for i := 0 to 12 do
          TypeSend('/' + IntToStr(i));
      until(False);
    end.

    I believe that should tickle your fancy.

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

    Default

    Or If you don't want SRL in it just do this

    SCAR Code:
    Program New;

    var
    i : integer;

    begin
      repeat
        for i := 0 to 12 do
        begin
          sendkeys('/' + inttostr(i) + chr(13));
          wait(70);
        end;
      until(isfkeydown(9));
    end.

    That will keep repeating it until you press F9.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. simple auto fighter needed
    By q3ick in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 07-13-2008, 04:17 PM
  2. Replies: 4
    Last Post: 11-16-2007, 11:02 PM
  3. Probably fairly simple script needed
    By vycoex in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 04-30-2007, 06:07 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
  •