Hi, I'm making my first script and it is a power woodcutter in lummy on 1 tree. I have all the codes done and when I try to right click it doesnt and clicks on the empty space in my inventory(thats where the "Drop" button should appear when I right click)
Heres my script (Some reviews aswell please)
SCAR Code:
program PowerAutorWoodCutter;//you have to stand right infront of a tree
var
x,y: Integer;
i: Integer;
const
FirstTreeColor=874569;
begin
i:= 0
if(FindColor(x,y,874569 ,-2,-28,767,600)) then
repeat
i:= i + 1;
ClickMouse(287,133,true);//This is where I click the tree
Wait(3000);
MoveMouse(576,232);
ClickMouse(576,232,false);//I now right click the log
ClickMouse(575,273,true);//I now drop the log on the ground
Wait(5000);
ClickMouse(287,133,true);//This is where I click the tree
until(i >= 20)// To increase the number of times it repeats... change the "20" to what ever number you want