Results 1 to 6 of 6

Thread: Dofus Farmer

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

    Default Dofus Farmer

    http://dofus.com

    Just looking for a basic Farmer for dofus..
    Clicks on *wheat* and then clicks Reap.

    i tried making/editing one but was having issues..:x
    it seems to like to *Stop* and sometimes only clicks in a small radius around it:x

    Code:
    program New;
    var
    x, y, z: integer;
    
    Procedure Kolor;
    begin
     z:=700+random(700);
     if FindColor(x, y, 1236983, 100, 100, 1270, 778) then
      begin
        MoveMouseSmooth(x, y);
        wait(100);
        clickmouse(x,y,true);
        wait (500);
        ClickMouse(x+28, y+45, true);
        wait(14000);
      end;
    end;
    begin
     repeat
      wait(1000);
      Kolor;
     until(false);
    end.



    That is it... if you have any idea's perhaps post:x

  2. #2
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    SCAR Code:
    program New;
    {.include srl/srl.scar}
    var
    z: integer;

    Procedure Kolor;
    begin
      repeat  
        if FindColor(x, y, 1236983, 100, 100, 1270, 778) then
        begin
          Mouse(x,y,2,2,false);
          ChooseOption(x,y,'reap');
          z:=z+1
        end;
      end;
      until z:=28
    end.
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


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

    Default

    erm, so whats this i tried it.. and it doesnt work.
    comes up with unknown identifiers..

    (the script is for 'Dofus'? or intended for Rs?

    thanks for reply though^^

  4. #4
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    what were the unknown identifiers...that should work
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  5. #5
    Join Date
    Feb 2007
    Posts
    219
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    he probably doesnt have SRL

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

    Default

    "Line 16: [Error] (14417:1): Identifier expected in script"

    would be the error i get

    and i think i downloaded the srl

    "Downloading SRL plugins.
    Installing SRL plugins.
    Downloading SRL includes.
    Installing SRL includes.
    Downloading SRL manual.
    SRL version 370 has been downloaded and installed."

    could u explain the edited bits you have done. if you could fix the error?
    thanks for posting

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Dofus Anyone?
    By BanditX in forum Gaming
    Replies: 44
    Last Post: 09-16-2009, 02:30 AM
  2. Dofus.
    By WT-Fakawi in forum News and General
    Replies: 4
    Last Post: 08-11-2006, 02:12 AM

Posting Permissions

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