[Simba]AutoAlch by Vusn

Discussion in 'RuneScape 2007 Cheating' started by Vusn, Mar 7, 2013.

[Simba]AutoAlch by Vusn
  1. Unread #1 - Mar 7, 2013 at 12:34 AM
  2. Vusn
    Joined:
    Nov 5, 2011
    Posts:
    298
    Referrals:
    0
    Sythe Gold:
    3
    Christmas 2013

    Vusn Forum Addict

    [Simba]AutoAlch by Vusn

    AutoAlch by Vusn


    Improved Version 1.1 Features

    - High Alchs any item
    - Supports SMART
    - Excellent AntiBan Features
    - Removed the AntiLeech
    - Flawless in a no random area
    - The debug will count after each alch. I find it useful to have a bit of the window exposed so that I
    can monitor the alching while browsing the Internet, or playing other characters.
    - Simple progress report (exp gained, amount of alchs) at the end of the script.

    Upcoming Versions

    - AntiRandom features
    - Advanced Progress Tracker
    - Auto log out when out of runes or in a random event


    ** Make sure the item that you want to alch is in the same spot as the alchemy spell, as if you were casting legit. **
    ** For best results, use in a non random area (Pest Control). **
    ** Please stay current with updates! **

    Code:
    program AutoAlch;
    
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}
    {$I P07Include.Simba}
    
    
    
        (*  __________________________________ *)
        (*                                     *)
        (*     AutoAlch v1.0 - Made By Vusn!   *)
        (*  __________________________________ *)
    
        (* To disable SMART delete lines 3 & 114 *)
    
    
    
      var
      x, y, AlchCount, StartTime, EndTime: Integer;
    
    Procedure P07_DeclarePlayer;
    begin
      P07_PlayerName:='';
      P07_PlayerPass:='';
    end;
    
    procedure HumanMove;
    Begin
    
      case random(200) of
        1..160:   MMouse(RandomRange(713 - 5, 713 + 5), RandomRange(338 - 5, 338 + 5), 0, 0);
        161..190: MMouse(RandomRange(713 - 7, 713 + 7), RandomRange(338 - 7, 338 +7), 0, 0);
        191..200: MMouse(RandomRange(713 - 10, 713 + 10), RandomRange(338 - 10, 338 + 10), 0, 0);
      End;
    End;
    
    procedure ClickAlch;
    begin
    If (FindColorTolerance(X,Y,1910383,730,173,734,180,13)) Then
      begin
       HumanMove;
       wait(randomrange(700, 1000));
       clickmouse2(mouse_left);
       wait(randomrange(700, 1000));
       clickmouse2(mouse_left);
       AlchCount := AlchCount + 1;
      end;
    If  (Not FindColorTolerance(X,Y,1910383,730,173,734,180,13)) Then
      wait(randomrange(1000, 1500));
      P07_TabInventoryTab(7);
    
    end;
    
    Procedure Antiban;
    Begin
    
      Case Random(100) Of
        1: HoverSkill('magic', False);
        2: HoverSkill('random', False);
        3: Boredhuman;
        4: Wait(2500 + random(4500));
        5: HoverSkill('strength', False);
        6: PickUpMouse;
        7: RandomMovement;
        8: RandomRClick;
      end;
    end;
    
    Procedure MiniBreaker;              //Credit to Solidone40
    Begin
    
      Case Random (160) Of
        1: Wait(40000 + random(7400));
        2: Wait(25500 + random(8550));
        3: Wait(60040 + random(6759));
        4: Wait(20400 + random(2549));
      end;
    end;
    
    procedure Welcome;
    begin
     ClearDebug;
     begin
      Writeln('       ____________________________');
      Writeln('                                   ');
      Writeln('       AutoAlch v1.0 - Made By Vusn');
      Writeln('       ____________________________');
      Writeln('                                   ');
      Writeln('                                   ');
      Writeln('         Starting Script.. Enjoy!');
      end;
    end;
    
    procedure Report;
    begin
     ClearDebug;
      begin
      Writeln('Alchs Cast: ' + inttostr(AlchCount));
      Writeln('Experienced Gained:' + inttostr(65 * (AlchCount)));
      end;
    end;
    
    begin
    SetupSRL;
    P07_DeclarePlayer;
    SetupP07Include;
    Welcome;
     If (Not P07_LoggedIn) Then
      begin
        P07_LogInPlayer;
      end;
     repeat
    ClickAlch;
    Writeln(AlchCount);
    AntiBan;
    MiniBreaker;
    FindMod;
     until(not P07_LoggedIn)
    Report;
     end.
                 
     
  3. Unread #2 - Mar 7, 2013 at 1:58 AM
  4. MMA
    Joined:
    Apr 27, 2012
    Posts:
    2,324
    Referrals:
    1,519
    Sythe Gold:
    1,075

    MMA Cinderella Man
    Banned

    [Simba]AutoAlch by Vusn

    This isn't villavu not many people know srl and won't be able to figure out the anti leech.
     
  5. Unread #3 - Mar 7, 2013 at 2:07 AM
  6. Taylor Swift
    Joined:
    Mar 6, 2013
    Posts:
    148
    Referrals:
    0
    Sythe Gold:
    0

    Taylor Swift Active Member

    [Simba]AutoAlch by Vusn

    This is a pretty simple script. For people having trouble with the antileech, in pascal a lot of lines of code end with a ;. Check the lines around the line in the debug box to make sure that is done. The Antiban in the mainloop that isn't working is referring to another function on the program. Check to make sure the names match.
     
  7. Unread #4 - Mar 7, 2013 at 1:28 PM
  8. Vusn
    Joined:
    Nov 5, 2011
    Posts:
    298
    Referrals:
    0
    Sythe Gold:
    3
    Christmas 2013

    Vusn Forum Addict

    [Simba]AutoAlch by Vusn

    The errors will tell you exactly how to fix it ;p
     
  9. Unread #5 - Mar 9, 2013 at 4:29 AM
  10. Vusn
    Joined:
    Nov 5, 2011
    Posts:
    298
    Referrals:
    0
    Sythe Gold:
    3
    Christmas 2013

    Vusn Forum Addict

    [Simba]AutoAlch by Vusn

    Did some much needed upgrades to it + removed antileech
     
  11. Unread #6 - Mar 10, 2013 at 10:12 PM
  12. Trackdude
    Joined:
    Apr 4, 2012
    Posts:
    29
    Referrals:
    0
    Sythe Gold:
    0

    Trackdude Member

    [Simba]AutoAlch by Vusn

    Thanks for this!
     
< Alching | Can someone help me solve 'anti-leeches' off simba scripts? >

Users viewing this thread
1 guest


 
 
Adblock breaks this site