 |
|
 |
|
Newbie

Group: Members
Posts: 3
Joined: 25-April 09
Member No.: 892,421
|
|
 |
|
 |

|
I found this on YouTube and I'd tried it, an it WORKS!! 1st, you need a SCAR Divi 3.20, don't ask whr to dl it, google it should do. Open it, and copy these codes,paste inside the script:
var x, y: integer;
function Targetwheat1 : Boolean; begin if(FindColor(x, y, 1232117, 0, 0, 800, 600))then result:= true end;
function Targetwheat2 : Boolean; begin if(FindColor(x, y, 679825, 0, 0, 800, 600))then result:= true end;
function Nextwheat1 : Boolean; begin if(FindColor(x, y, 708332, 0, 0, 800, 600))then result:= true end;
function Nextwheat2 : Boolean; begin if(FindColor(x, y, 1061237, 0, 0, 800, 600))then result:= true end;
Procedure Harvest; begin if (Targetwheat1)or(Targetwheat2) then MoveMouseSmooth(x, y); Wait(100+random(200)); HoldMouse(x, y, true); Wait(20+random(50)); ReleaseMouse(x, y, true); Wait(100+random(200)); MoveMouseSmooth(x+27, y+38);
Wait(100+random(200)); HoldMouse(x+27, y+38, true); Wait(20+random(50)); ReleaseMouse(x+27, y+38, true); Wait(3000+random(500)); Wait(12000); //<--- However long it takes you to chop wheat! end;
function nowheat : Boolean; begin if(FindColor(x, y, 1683891, 0, 0, 800, 600))then result:= false end;
begin harvest; repeat if (nowheat) then harvest; if(nextwheat1)or(nextwheat2)th en harvest; until(false); end.
now,log in to Dofus. find a farming area(wheat) now go back to SCAR Divi. Find an icon on top(Color picker) then, click on the color of the wheat that is NOT the same as the ground. the color code will appear. copy it and replace with the code on top.
eg. if(FindColor(x, y, 1232117, 0, 0, 800, 600))then result:= true <-----replace 1232117 with the color u choose.
now, last step. drag the last icon on the bar(a circle)and place it on Dofus. click the 'play' button(which in gree in color.) enjoy :)
This post has been edited by appleneko: Apr 25 2009, 05:48 AM
|