Results 1 to 4 of 4

Thread: How should my script recognize a Willow tree?

  1. #1
    Join Date
    May 2008
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default How should my script recognize a Willow tree?

    Well, as the title says, I need a way to recognize a willow tree for my woodcutter, I am using IsUpText, and it works, but it constantly clicks, and I am sick of it. Please don't give me the entire process, because I am going to use it for my members application, but give me the general idea, thanks in advance!

  2. #2
    Join Date
    Feb 2009
    Location
    UK
    Posts
    89
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'd use a DTM to recognise the tree, click here for a great tutorial on how they work.

  3. #3
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    don't use a DTM for tree finding >.>

    use a DDTM at least..

    which is kinda silly either way because their is more than one look of a tree..

    you could use a TPA..

    and for the chopping..

    just do like..

    GetMousePos(x, y);
    --repeat
    ----SleepAndMoveMouse(RandomRange(100, 1000));
    ----MMouse(x, y, 5, 5);
    ----If(IsUpText('illow'))then
    ------Result := False
    ----else
    ------Result := True;
    --until(Result);

    something like that

  4. #4
    Join Date
    May 2008
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Okay, thanks guys, I'll check those out, keep the ideas coming in!

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
  •