Results 1 to 8 of 8

Thread: Auto Array maker!!!!! v1

  1. #1
    Join Date
    Nov 2006
    Location
    Bel Air, Maryland, USA
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Array maker!!!!! v1

    for turning your list of information into arrays,i have successfully used this on a 4800 long array :-)

    instructions for use
    1.make sure your cursor is on the line above where ur first piece of the array starts
    2.setup the name of ur array in array maker, and list how many pieces of data u are turning into array, ex:= in mine there was 14 total pieces of data

    SCAR Code:
    program autoarraymaker;
    {.include srl/srl.scar}
    var howmanyinarray,number:integer;ArrayName:string;
    begin
    setupsrl;
    activateclient;
    wait(5000);
    HowManyInArray:=14;//this is total amount, not array number max;
    ArrayName:='Color'; // before the open bracket in ur array
    repeat
    keydown(40);
    keyup(40);
    keydown(36);
    keyup(36);
    sendkeys(ArrayName+'['+inttostr(number)+']:=');
    keydown(35);
    keyup(35);
    sendkeys(';');
    number:=number+1;
    wait(3);
    until (number=howmanyinarray)
    end.

    ex:=
    SCAR Code:
    program new;

    procedure setup;
    begin ///put ur cursor on this line
    5789791
    5855584
    5921377
    5987170
    6052963
    6118756
    6184549
    6250343
    6316136
    6381929
    6447722
    6513515
    6579308
    6645101
    end;

    turns that into this

    SCAR Code:
    program new;

    procedure setup;
    begin ///put ur cursor on this line
    Color[0]:=5789791;
    Color[1]:=5855584;
    Color[2]:=5921377;
    Color[3]:=5987170;
    Color[4]:=6052963;
    Color[5]:=6118756;
    Color[6]:=6184549;
    Color[7]:=6250343;
    Color[8]:=6316136;
    Color[9]:=6381929;
    Color[10]:=6447722;
    Color[11]:=6513515;
    Color[12]:=6579308;
    Color[13]:=6645101;
    end;

  2. #2
    Join Date
    Mar 2007
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol, this might sound really noobish, but what is an array?

  3. #3
    Join Date
    Jan 2007
    Location
    Skaville, Jamaica
    Posts
    1,117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    An array is used while SCAR scripting. You can use it to set up more than one player while Runescape macroing. And this is a very odd idea, but very helpful as well!

    Gosh, macros could be used for everything! That's what I believe makes them so exciting, because they can do virtually anything you want, and you can be extremely creative with them, as you are in this.

  4. #4
    Join Date
    Mar 2007
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ieatjooer, ty. Yeah i see how that could be helpful. My friend is a pretty big macroer, and he told me he did that. He just didnt use the name array. Thanks.

  5. #5
    Join Date
    Feb 2007
    Posts
    215
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have a question. Why include srl? So you can put it in the srl scripts section? lol you dont use a single srl function other than setupsrl. So what's the point of putting it in there and causing a second of lag during compile time?
    A common mistake people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.
    -Douglas Adams

  6. #6
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by SonOfSheep View Post
    I have a question. Why include srl? So you can put it in the srl scripts section? lol you dont use a single srl function other than setupsrl. So what's the point of putting it in there and causing a second of lag during compile time?
    I dunno bout bramble, but my SCAR is set so that it automatically has

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}
     
    begin
      SetupSRL;
    end.
    at startup. And it lags for less than half a second for me

  7. #7
    Join Date
    Jan 2007
    Location
    Not here
    Posts
    1,604
    Mentioned
    2 Post(s)
    Quoted
    19 Post(s)

    Default

    Quote Originally Posted by Boreas View Post
    I dunno bout bramble, but my SCAR is set so that it automatically has

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}
     
    begin
      SetupSRL;
    end.
    at startup. And it lags for less than half a second for me
    wuh? how did you set it up to do that?
    Sleeping...

  8. #8
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    See my FAQ for link to tut by freddy

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. very cool auto acount maker v2 MUST SEE
    By jultimate in forum News and General
    Replies: 0
    Last Post: 08-12-2007, 04:14 PM
  2. Auto Plank Maker??
    By finishlast in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 07-28-2007, 06:18 AM
  3. auto cannon ball maker??
    By oberhofedavi in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 07-12-2007, 08:50 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
  •