Results 1 to 4 of 4

Thread: My Ent Finder

  1. #1
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My Ent Finder

    I can't figure out how to use my ent finder.

    can someone please help me.

    SCAR Code:
    function FindEnt: Boolean;
    begin
      TreesColor;
      For i:= 0 to 3 do
      if (FindObjCustom(X, Y, ['ill','low','illo','llo'], [TreeColor[i]], 3)) then
      MMouse(x,y,3,3);
      For i:= 0 to 2 do
      if (FindColorTolerance(x,y,EntColor[i],MSX1,MSY1,MSX2,MSY2,5)) then
      Result := True;
      EntsAvoided := EntsAvoided + 1;
      if not (FindColorTolerance(x,y,EntColor[i],MSX1,MSY1,MSX2,MSY2,5)) then
      Result := False;
    end;


    SCAR Code:
    procedure ChopTree;
    begin
      TreesColor;
      repeat
        If Not Loggedin Then Break;
        For i:= 0 to 4 do
        if (FindObjCustom(X, Y, ['ill','low','illo','llo'], [TreeColor[i]], 3)) then
        begin
          FindEnt;
          If FindEnt then
          Wait(20000);
          Mouse(x,y,3,3,False);
          ChooseOption('hop down');
          FFlag (0);
          FindNormalRandoms;
          RandomSpeak;
          MyAntiBannage;
          Wait(5000);
        end;
      Until(invfull);
    end;

  2. #2
    Join Date
    Feb 2007
    Location
    EST (US East Coast)
    Posts
    250
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You don't need to call FindEnt twice in your ChopTree procedure. Saying "if FindEnt then" will make it go through FindEnt.

    Otherwise I'm not entirely sure what you're asking.

    Also you messed up your For loops, you need a begin and end after them if you want them to do more than just one line of code.
    Temporarily inactive.

  3. #3
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    and you check for the "ent colors" on the whole mainscreen...narrow the search to the uptext area (i assume the ent colors would be the yellow text colors).
    METAL HEAD FOR LIFE!!!

  4. #4
    Join Date
    Jun 2007
    Location
    Wednesday
    Posts
    2,446
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    You also need to make sure you click somewhere else if it's an ent before waiting, otherwise you'll sit there for 20 seconds chopping an ent and break your axe. Also, remember to randomize the waiting time.
    By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Creating a pick head finder, and gas finder
    By Tom_Gower in forum OSR Help
    Replies: 7
    Last Post: 11-07-2008, 07:06 AM
  2. need ent finder help
    By poolikemax in forum OSR Help
    Replies: 9
    Last Post: 02-07-2008, 09:20 AM
  3. Ent Finder..
    By pallooo in forum OSR Help
    Replies: 10
    Last Post: 10-31-2007, 03:12 PM

Posting Permissions

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