Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 64

Thread: Flesh Crawler Attacker

  1. #26
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think he ment like random antiban maybe?

  2. #27
    Join Date
    Feb 2012
    Location
    West Virginia
    Posts
    387
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by laakerules View Post
    I think he ment like random antiban maybe?
    Possibly.

  3. #28
    Join Date
    Feb 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hi , i tried the script and it doesnt work for me ,
    what can i do? im standing at fleshies, i got lobs in my inventory i press start on the bot and it just say,
    attacking flesh crawler. over and over

    help
    Last edited by homo89; 02-10-2012 at 07:31 PM.

  4. #29
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wait until beginner gets back! If he doesnt soon I'll help possibly!

  5. #30
    Join Date
    Feb 2012
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice ill try out later

  6. #31
    Join Date
    Apr 2007
    Location
    Lithuania
    Posts
    384
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Random letters might be from using angle functions in a wrong way. I used it too and had that problem until I read srl docs.

  7. #32
    Join Date
    Feb 2012
    Location
    England
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Going to try
    Lets Bot.

  8. #33
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    I don;t know man the problem is but this works perfectly for me.

    Try this one sir.
    Simba Code:
    // by begginer. thanks for using it. Enjoy it :)

    program AttackFlashCrawler;
    {$DEFINE SMART}
    {$i SRL/srl.simba}
    {$i SRL/SRL/skill/fighting.simba}
         var
       x: Integer;
    const
      SRLStats_Username = '';   //Insert your SRL stats username here.
      SRLStats_Password = '';   //Insert your SRL stats password here.
      BreakEvery        = 120;  //How many minutes before breaking?
      BreakFor          = 5;    //How many minutes to break for?
      Version           = '1';
      NumbOfPlayers     = 1;    //How many players are you using?
      StartPlayer       = 0;    //Which player will you start with? (0 means first)

    procedure DeclarePlayers;
    begin
      NumberOfPlayers(NumbOfPlayers);
      CurrentPlayer := 0;

      Players[0].Name     :='';     //Insert player username here.
      Players[0].Pass     :='';     //Insert player password here.
      Players[0].Active   := True;  //Leave True to use this player.
    end;


    function FightCrawler:Boolean;
    var
      x, y: Integer;
    begin
      if FindObjCustom(x, y, ['att', 'ack', 'Flesh', 'Crawle'], [929072], 5) then
      Mouse(x, y, 3, 3, True);
         wait(5000+Random(5000));   // Change this if you want for faster attacking. 1000 = 1SECOND
      Writeln('We found a Crawler. Attacking it');
    end;

    procedure AntiBan;

    begin
    Writeln ('Anti-banning');
      x := Random(50)  case x of
        0:
          HoverSkill('Attack', false);
        1:
          HoverSkill('Strength', false);
        2:
          HoverSkill('Defence', false);
        3:
          HoverSkill('hitpoints', false);
        12..15:
          PickUpMouse;
        16..25:
          RandomMovement;
        26..27:
          RandomRClick;
        28..32:
          BoredHuman;
        33:
          ExamineInv;
         34..50:
         RandomRClick;


         end;

      Wait(RandomRange(800, 1200));
    end;

    procedure EatIfLow;
    var
      MMColor: string;
      x, y, Lobster: Integer;
      begin
      Lobster := DTMFromString('mlwAAAHicY2dgYJjPxMCwGIoXAvFMIF4AxEuAuJ8RgicB8XQg7oLiDiDm4+NjKLcRZJjtJ86wJVqaYV2EFMP8AHGGbTHSDFxAc3FhRjwYCgD3pg8b');

    begin
      GetMMLevels('hp', MMColor);
      if (MMColor = 'Red') then
      repeat
        if FindDTM(Lobster, x, y, MIX1, MIY1, MIX2, MIY2) then
        begin
          InvMouse(CoordsToItem(x, y), 3);
          if WaitUpText('Eat Lobster', 100) then
          begin
            ClickMouse2(true);
            Wait(RandomRange(350, 525));
          end;
        end else
          Break;
        GetMMLevels('hp', MMColor)
      until((MMColor = 'Green'))
     end;
     FreeDTM(Lobster);
    end;




    begin
      SetupSRL;
      ActivateClient;
      DeclarePlayers;
      EatIfLow;
      repeat
        FightCrawler;                // this will be for repeating action
        EatIfLow;                   // this will be for repating eating
        AntiBan;

      until(false);

    end.
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  9. #34
    Join Date
    Nov 2011
    Location
    Puerto Rico
    Posts
    905
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by BaYBeeZ View Post
    Actually, you are lying. You copy and pasted the beginning of my goblin script. All of the wording is the exact same as mine. Even the version number "0.12"

    Don't lie and leech. Learn how to make things on your own...



    Compare his script to my beginner Goblin script I sent you and you'll see what I'm talking about.

    It's so simple to set this up on your own, man! Don't just copy and paste next time.
    Instead of flaming him over stealing something from a shitty goblin script why not give positive feedback and not triple post.
    Last edited by BraK; 03-04-2012 at 07:00 PM.

  10. #35
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by illuminatiswag View Post
    Instead of flaming him over stealing something from a shitty goblin script why not give positive feedback and not triple post maricon
    Thanks for supporting me
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  11. #36
    Join Date
    Feb 2012
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.

    Keep getting this D:

  12. #37
    Join Date
    Nov 2011
    Location
    United states
    Posts
    516
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Usa View Post
    ...add in randoms?

    rofl this kids a winner...... I dont think he actually wrote this cause he asked me how to loot stuff.... he could just look for the looter in my chicken script

  13. #38
    Join Date
    Jan 2012
    Location
    i am the monster under yo bed!!
    Posts
    161
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    want a banner if you do pm me
    holysin's Draynor Willow PowerChopper

    http://villavu.com/forum/showthread.php?t=74607

  14. #39
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by getdropped69 View Post
    rofl this kids a winner...... I dont think he actually wrote this cause he asked me how to loot stuff.... he could just look for the looter in my chicken script
    I am not using it. I am using a TPA pickuper
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  15. #40
    Join Date
    Dec 2011
    Posts
    1,162
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol, my functin is best for picking items up! if you know how to find best color that doesnt match anything that is!

  16. #41
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by laakerules View Post
    Lol, my functin is best for picking items up! if you know how to find best color that doesnt match anything that is!
    I will be using yours. Just need to find proper colours
    Last edited by begginer; 02-14-2012 at 10:27 AM. Reason: grammar error
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  17. #42
    Join Date
    Nov 2011
    Posts
    145
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Could you add Charm pick up ^^?

  18. #43
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Yeah sure. Just after runepick. But I noticed sth. They rarely drop fire runes. I used to get like 5000 runes. But while I killed 20 Crawler there was no fire rune.
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  19. #44
    Join Date
    Jan 2012
    Location
    i am the monster under yo bed!!
    Posts
    161
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    bro you want a banner i just need to add text to it ?


    holysin's Draynor Willow PowerChopper

    http://villavu.com/forum/showthread.php?t=74607

  20. #45
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Quote Originally Posted by holysin View Post
    bro you want a banner i just need to add text to it ?


    Do your best please
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  21. #46
    Join Date
    Jan 2012
    Location
    i am the monster under yo bed!!
    Posts
    161
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    okay doke ill finish it after i have a shower :S reply if you want any simularities from the one i made for laakerules blood pacter
    holysin's Draynor Willow PowerChopper

    http://villavu.com/forum/showthread.php?t=74607

  22. #47
    Join Date
    Jan 2012
    Location
    i am the monster under yo bed!!
    Posts
    161
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default


    this ok?
    holysin's Draynor Willow PowerChopper

    http://villavu.com/forum/showthread.php?t=74607

  23. #48
    Join Date
    Jan 2012
    Location
    i am the monster under yo bed!!
    Posts
    161
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you forgot player setup so i wouldn't log in

    i just added one from my powerchopper
    Simba Code:
    Procedure PlayerSetup;
    begin
      LoginPlayer;
      SetAngle(SRL_ANGLE_HIGH);
     

      end;


    the Setangle(SRL_ANGLE_HIGH);
    is useful aswell
    (it sets the angle high ) if you didn't know :P other than that it's good
    and im looking forward to the runepickup
    holysin's Draynor Willow PowerChopper

    http://villavu.com/forum/showthread.php?t=74607

  24. #49
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Added v2. Pick runes up are not supported
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

  25. #50
    Join Date
    Dec 2011
    Location
    Kosovo
    Posts
    831
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Can anyone post here if this worked for you please!
    Goals:
    Understanding TPAs
    Making Proggy for fighting
    Getting on SRL members
    Get 500 posts

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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