Results 1 to 7 of 7

Thread: first autoefighter

  1. #1
    Join Date
    Jun 2007
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default first autoefighter

    pretty basic script but its the best i can do atm lol

  2. #2
    Join Date
    Mar 2007
    Location
    Maryland, USA
    Posts
    184
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok first of all move mouse and click mouse are really detectable so i edited ur script to make it neater and more un-detectable

    SCAR Code:
    // my first script not too great
    // antirandom no antiban
    // Just fill in monster colors and hit run
    // Made neater and more undetectable by 71runemaker
    // You dont have to put that tho...

    program Autofight;

    {.include SRL/SRL.Scar}

    const
    MonsterColor1 = 7305336;
    MonsterColor2 = 6775658;

    procedure One;
     begin
      if(FindColorTolerance(x, y, MonsterColor1, MSX1, MSY1, MSX2, MSY2, 10)) then
       begin
       Mouse(x, y, 1, 1, false)
       Chooseoptionex('Attack');
       end;
     end;

    procedure Two;
     begin
      if(FindColorTolerance(x, y, MonsterColor2, MSX1, MSY1, MSX2, MSY2, 10)) then
       begin
       Mouse(x, y, 1, 1, false)
       Chooseoptionex('Attack');
       end;
     end;

    procedure AntiRandoms;
     begin
     FindTalk;
     FindNormalRandoms;
      if (FindFight = true) then
       begin
       RunAwayDirection('N');
       Wait(10000 + random(2000));
       RunBack;
       end;
     end;


    begin
    repeat
      SetupSRL;
      One;
      Two;
      AntiRandoms;
    until(false);
    end.

  3. #3
    Join Date
    Jun 2007
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    k thanks

  4. #4
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Nice script, but if you want people to use you have to have more colors and beter anti randoms. and anti ban

  5. #5
    Join Date
    Jun 2007
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah it was a just a basic one to help me get used to scar lol

  6. #6
    Join Date
    Jun 2007
    Location
    Mianus
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    it takes a little time but ull get there

  7. #7
    Join Date
    Jun 2007
    Location
    Mianus
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    heres a good tut press ctrl+f then search anti and it should say how to get anti randoms into ur script here it is http://www.villavu.com/forum/showthread.php?t=8273

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
  •