Results 1 to 11 of 11

Thread: Help With DraynorOakBanker

  1. #1
    Join Date
    Jul 2007
    Location
    Edmonton, AB
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Help With DraynorOakBanker

    hey I am currently working on a Draynor Oak Banker;

    First; It Logs in, walks to the tree, clicks the tree once, then when the tree falls, it doesn't click it again.

    If anyone can help me, How do I make it click the tree more then once then walk to the bank when it's done???

    thx.

    -Wdf?

  2. #2
    Join Date
    Jul 2007
    Posts
    184
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wdf? View Post
    hey I am currently working on a Draynor Oak Banker;

    First; It Logs in, walks to the tree, clicks the tree once, then when the tree falls, it doesn't click it again.

    If anyone can help me, How do I make it click the tree more then once then walk to the bank when it's done???

    thx.

    -Wdf?
    it would help if we could see you script and tell you whats wrong and what need to be change (we can help if we can see whats wrong) post ur script and ill try to help if i can

  3. #3
    Join Date
    Jul 2007
    Location
    Edmonton, AB
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program DrayOakBanker;
    {.include srl/SRL.scar}

    var
    x,y: Integer;

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

      Players[0].Name        :='';
      Players[0].Pass        :='';
      Players[0].Nick        :='';
      Players[0].Active      := True;

      Players[1].Name       :='';
      Players[1].Pass       :='';
      Players[1].Nick       :='';
      Players[1].Active     := True;

      Players[2].Name       :='';
      Players[2].Pass       :='';
      Players[2].Nick       :='';
      Players[2].Active     := True;

      Players[3].Name       :='';
      Players[3].Pass       :='';
      Players[3].Nick       :='';
      Players[3].Active     := True;
    end;

    procedure LogIn;
    begin
     SetupSRL;
      DeclarePlayers;
     LoginPlayer;
    end;


    procedure WalkToOak;
    begin
     if FindColor(x, y, 2316901, 0, 0, 1280, 800) then
      begin
    Mouse(x,y,0,0,true);
      end;
    end;

    procedure WalkToBank;
    begin
    if(FindColor(x,y,4045013,0,0,100,100)) then
     begin
    Mouse(x,y,0,0,true);
     end;
    end;


    var
    TTimes: Integer;
    tx, ty: Integer;
    RandomChopClick: Integer;
    I: Integer;

    procedure ChopOak;
    begin
     if FindColor(x, y, 1933168, 0, 0, 1280, 800) then
      begin
    Mouse(x,y,0,0,true);
      end;
    end;

  4. #4
    Join Date
    Jul 2007
    Location
    Edmonton, AB
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That's all I have so far.

  5. #5
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Wdf? View Post
    That's all I have so far.
    Your login + pass was in your post. I changed your pass and pmed it to you.
    Administrator's Warning:


  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    You have a lot of direct color coord clicking XD You have to have it repeat the clicking of the oak somehow using repeat..


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    Jul 2007
    Location
    Edmonton, AB
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sumillion, ty r0fl

  8. #8
    Join Date
    Sep 2007
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Also on a note from what the others said, fill youre info, and try low quality RS and Very Bright settings.

    Make sure you have SRL 4 and SCAR 3.11!

    Thats all I can think of. Hope I helped!

  9. #9
    Join Date
    Apr 2007
    Posts
    379
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, the script runs exactly as you wrote it, you have no repeat, meaning as soon as it runs through the script once it is done, there are some tutorials out there that will help.

  10. #10
    Join Date
    Jan 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah scar 3.11 would help

  11. #11
    Join Date
    Jul 2007
    Location
    Edmonton, AB
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have scar 3.11.

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
  •