Results 1 to 10 of 10

Thread: <$> Ardougne Silk Thiever! <$>

  1. #1
    Join Date
    Feb 2013
    Location
    Canada
    Posts
    49
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default <$> Ardougne Silk Thiever! <$>

    This is an ardougne silk thiever, start from behind the stall.

    THIS ONLY WORKS FOR SMART. THATS WHY THERE IS NO ANTI-LEACH B/C only people with smart can use it


    Features ;

    Steals Silk
    Basic Anti-Ban


    Code:
    program SilkStealer;
    {$define SMART}
    {$I SRL/SRL.Simba}
    {$I P07Include.Simba}
    
    
    Procedure CountDown;
    begin;
    Writeln('Welcome to Ekarma''s silk stealer!');
    Writeln('Script is starting in 5...');
    wait(1000);
    Writeln('Script is starting in 4...');
    wait(1000);
    Writeln('Script is starting in 3...');
    wait(1000);
    Writeln('Script is starting in 2...');
    wait(1000);
    Writeln('Script is starting in 1...');
    wait(1000);
    ClearDebug;
    end;
    
    Procedure AntiBan;
    begin
      if not(P07_loggedin)then
      Exit;
      case Random(4) of
       0: P07_HoverSkill('thieving', random(5000));
       1: PickUpMouse;
       2: P07_MakeCameraAngleLow;
       3: P07_MakeCameraAngleHigh;
       4: P07_MakeCompassNorth;
      end;
    end;
    
    Procedure Camera;
    begin;
    If (Not P07_LoggedIn) Then
    Exit;
      KeyDown(38);
      Wait(RandomRange(1800,2000));
      KeyUp(38);
     P07_MakeCompassDegree(50);
    End;
    
    Procedure StealSilk;
    var x, y: Integer;
    
    begin;
    If (Not P07_LoggedIn) Then
    Exit;
    Writeln( 'Looking for silk stall...')
    repeat
     If P07_FindObjCustom(x, y, ['Steal-from', 'Silk stall'], [6244186, 4292715], 2) Then
     begin;
      Mouse(x, y, 3, 3, true);
      antiban;
      wait(randomrange(750,500));
      end;
      until(P07_Invfull)
    end;
    
    
    Procedure Invyfull;
    begin;
    Writeln('Inventory Full! Please bank!');
    Writeln('Waiting 10 Seconds, Please pause script and bank!');
    Wait(10000);
    end;
    
    
    Begin
    ClearDebug;
    SetupSRL;
    SetupP07Include;
    ClearDebug;
    CountDown;
    Repeat
    Camera;
    StealSilk;
    Invyfull;
    Until(false);
    end.
    Last edited by Ekarma; 03-05-2013 at 01:51 AM.

  2. #2
    Join Date
    May 2012
    Posts
    60
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Use P07_HoverSkill instead of just HoverSkill.
    Why would you make the antiban hover woodcutting when training thieving btw?


    You can shorten it like this
    Simba Code:
    Procedure AntiBan;
    begin
      if not(P07_loggedin)then
      Exit;
      case Random(4) of
       0: P07_HoverSkill('thieving', random(5000);
       1: PickUpMouse;
       2: P07_MakeCameraAngleLow;
       3: P07_MakeCameraAngleHigh;
       4: P07_MakeCompassNorth;
      end;
    end;

  3. #3
    Join Date
    Feb 2013
    Location
    Canada
    Posts
    49
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by Sequence View Post
    Use P07_HoverSkill instead of just HoverSkill.
    Why would you make the antiban hover woodcutting when training thieving btw?


    You can shorten it like this
    Simba Code:
    Procedure AntiBan;
    begin
      if not(P07_loggedin)then
      Exit;
      case Random(4) of
       0: P07_HoverSkill('thieving', random(5000);
       1: PickUpMouse;
       2: P07_MakeCameraAngleLow;
       3: P07_MakeCameraAngleHigh;
       4: P07_MakeCompassNorth;
      end;
    end;
    thanks, wasnt paying attention just took the antiban outa my old wcing script and tweaked it :P

  4. #4
    Join Date
    Mar 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Ekarma View Post
    thanks, wasnt paying attention just took the antiban outa my old wcing script and tweaked it :P
    [Error] (29:46): comma (',') expected at line 28
    Compiling failed.

  5. #5
    Join Date
    Mar 2013
    Posts
    59
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Would be nice if you added banking

  6. #6
    Join Date
    Dec 2011
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Pegusis View Post
    [Error] (29:46): comma (',') expected at line 28
    Compiling failed.
    Same for me..
    [Error] (29:46): comma (',') expected at line 28
    Compiling failed.

  7. #7
    Join Date
    Feb 2012
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    27 Post(s)

    Default

    How do you obtain SMART?

  8. #8
    Join Date
    Jul 2012
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    are you thinking about implementing DTM walking at all? Would be awesome if you did great script

  9. #9
    Join Date
    Feb 2013
    Location
    Canada
    Posts
    49
    Mentioned
    2 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by Chabbis1 View Post
    Same for me..
    [Error] (29:46): comma (',') expected at line 28
    Compiling failed.
    Fixed it.
    Quote Originally Posted by drc1998 View Post
    are you thinking about implementing DTM walking at all? Would be awesome if you did great script
    Probably not because im working on my fur script, but for that I will be adding DTM walking
    Thanks

  10. #10
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

Thread Information

Users Browsing this Thread

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •