Results 1 to 8 of 8

Thread: [RS2]Auto Alchemy v2.0

  1. #1
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [RS2]Auto Alchemy v2.0

    Ok im back and made a auto alchemy script since everyone wants a auto clicker for a alchemy thing, why not make a auto alchemy?
    When it gets better im gonna test it out and maybe sell it when it gets to the last version(i might sell it).

    creds to:the srl manua l, junior and rest to myself .

    --------------
    anti ban |
    anti randoms |
    short setup |
    auto-cast |
    auto-wait |
    high+low alch |
    and other |
    stuff |
    --------------

    The alcher==
    Code:
    {  *********                   **               **    *    ********* ""
          **      **        **     ***********      **  **        **      ********
      $   **      **        **     **        **     *****     **  **      **
      **  **      **   $    **     **        **     ** **     **  **   $  ********
       ****       **        **     **        **     **   *     ****             **
        **         **********      **        **     **    *     **        ********
    $                                  $           $
          ******        **   **********   **        ********      ********   $
         ** $$ **       **   **           **        **            **     *
        **********      **   **           *******   ********      ********
       **        **     **   **           **   **   **            **   **        $
      **          **    **   **********   **   **   ********      **    **
    ________________________________________________________________________________
    +=++=++=++=++=++=++=++=++=++=+Read+At=Risk!++=++=++=++=++=++=++=++=++=++=++=++=+
    ok im made a alcher wich i never thought i can do when i got back from my break.
    I used the srl manual to help me with it so here it is, the new script from me!!
    +=++=++=++=++=++=++=++=++=++=+++=+JunkJ+=++=++=++=++=++=++=++=++=++=++=++=++=++=
    not responsible for any banned acounts.
    dead?not my problem.
    must have the item your alching in the 2nd inventory slot
    Anti randoms
    Anti ban
    -------------------------------------------------------------------------------}
    
    program autoalcher;
    {.include srl/srl.scar}
    {.include srl/srl/skill/magic.scar}
    {.include srl/srl/misc/trade.scar}
    
    var
    alched :integer;
    traded :integer;
    randomfoundormod :integer;
    
    
    const
    highorlow=('?'); //do you want to high alch or low alch? just put low or high
    howmanyalchs=50;  //how many alchs do you want to do
    name=('hobo');  //your RS2 name
    
    procedure alchitdude;
    begin
    if(highorlow=('high'))then
    begin
    castspell(35)
    useitem(2)
    wait(4000+Random(1000))
    alched:=howmanyalchs+1
    end else
    if(highorlow=('low'))then
    begin
    castspell(14)
    useitem(2)
    wait(4000+Random(1000))
    alched:=howmanyalchs+1
    end;
    end;
    
    procedure findthetrade;
    begin
    if(findtrade)then
    Accepttrade;
    wait(5000)
    Decline;
    typesend('nty, now scoot im busy')
    traded:=traded+1
    end;
    
    
    
    procedure hatetherandoms;
    begin
    FindNormalRandoms;
       if (FindTalk) then
       begin
       Writeln('talking or found a talk');
       randomfoundormod:=randomfoundormod+1
    
       if (FindMime) then
       begin
       writeln('lucky you, a mime!');
       randomfoundormod:=randomfoundormod+1
    
       if (FindMaze) then
       begin
       writeln('found maze');
       randomfoundormod:=randomfoundormod+1
    
       if (SolveFrog) then
       begin
       writeln('solved a frog');
       randomfoundormod:=randomfoundormod+1
    
       if (Findmod)then
       begin
       writeln('its the moderater!,AHHH!');
       randomfoundormod:=randomfoundormod+1
    
       if (solvepinball)then
       begin
       writeln('solved a pinball...');
       randomfoundormod:=randomfoundormod+1
    
       if (findforester) then
       begin
       writeln('found forester');
       randomfoundormod:=randomfoundormod+1
    
       if(findscaperune)then
       begin
       createscaperune;
       writeln('found scape rune');
       randomfoundormod:=randomfoundormod+1
    end;
    end;
    end;
    end;
    end;
    end;
    end;
    end;
    end;
    
    
    
    procedure hello;
    begin
    if (inchat('hello'))or
       (inchat('hi'))or
       (inchat('hey'))or
       (inchat('yo'))or
       (inchat(name))then
       typesend('hey')
    end;
    
    procedure whatsup;
    begin
    if (inchat('whats up'))or
       (inchat('whats new'))or
       (inchat('whats the 411'))then
       typesend('nothing')
    end;
    
    procedure friends;
    begin
    if (inchat('friends'))or
       (inchat('frends'))or
       (inchat('buddys'))or
       (inchat('add'))or
       (inchat('add me'))then
       typesend('sorry,got lots of them')
    end;
    
    procedure hatenoobcallers;
    begin
    if (inchat('noob'))or
       (inchat('noobie'))or
       (inchat('nub'))or
       (inchat('choob'))or
       (inchat('froobie'))or
       (inchat('choobie'))or
       (inchat('froob'))or
       (inchat('nubie'))then
       typesend('so i dont care,i play it for a reason.')
    end;
    
    procedure proggy;
    begin
    writeln('!@#$%^&*()-_+=!@#$%^&*()-_+=!@#$%^&*()-_+=!@#$%^&*()-_+=!@#$%^&*()-_+=');
    writeln('It finished or stopped in ' + (timerunning));
    writeln('It alched ' + inttostr(howmanyalchs) + ' times');
    writeln('Found ' + inttostr(randomfoundormod) + ' randoms or talks or mods');
    writeln('You have been traded ' + inttostr(traded) + ' times');
    writeln('!@#$%^&*()-_+=!@#$%^&*()-_+=!@#$%^&*()-_+=!@#$%^&*()-_+=!@#$%^&*()-_+=');
    end;
    
    procedure thereaper;
    begin
    if(wearedead)then
    begin
    disguisescar('a dead script')
    writeln('you died not me!');
    proggy;
    end;
    end;
    
    procedure theintro;
    begin
    Writeln('**************************************************');
    writeln('**|You are now using my wonderful alcher!Enjoy!|**');
    writeln('******|your doing ' + (highorlow) + ' alchemy|*******');
    Writeln('*******|your current name is ' + (name) + '|******');
    Writeln('**************************************************');
    end;
    
    
    
    begin
    disguisescar('a running script')
    SetUpSRL;
    ActivateClient;
    ClearDebug;
    theintro;
    repeat
    findnormalrandoms;
    thereaper;
    alchitdude;
    hatetherandoms;
    hatenoobcallers;
    whatsup;
    hello;
    until(howmanyalchs=howmanyalchs)
    if(howmanyalchs=howmanyalchs)then
    disguisescar('a done script')
    srlrandomsreport;
    logout;
    proggy;
    terminatescript;
    end.
    Enjoy!

  2. #2
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    hmmm...
    it looks like an auto clicker to me....

    They are sisters...
    Runescape Classic

  3. #3
    Join Date
    May 2006
    Posts
    141
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can use SRLRandomsReport;

  4. #4
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Rencuz View Post
    You can use SRLRandomsReport;
    Yeah im using that in my other version.

  5. #5
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    hmmm...
    it looks like an auto clicker to me....

    Why? It isn't perfect, i know, but hey it's his first script! (or somekinda like that)
    It does what it has to do...

  6. #6
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by legendaryhero90 View Post
    hmmm...
    it looks like an auto clicker to me....
    Why? I know it isn't a perfect script, but hey, it does what it suppose to do...

  7. #7
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Plz dont double post.

  8. #8
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    ow sorry, i didn't knew i double posted, sorry

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. Cast('High Level Alchemy') Problem
    By Xtensity in forum SRL Site Discussion
    Replies: 10
    Last Post: 09-04-2008, 06:02 AM
  3. King's Alchemy Table Script
    By King of the Nites in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 08-10-2008, 01:12 AM
  4. Advanced High Alchemy Script V1.5
    By bagofelix in forum RS3 Outdated / Broken Scripts
    Replies: 10
    Last Post: 02-10-2007, 10:47 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
  •