What is this symbol's name?
http://www.myfilelink.co.uk/file.asp...94ff47b495aa61
PS: I still cant get the stupid image tags to work![]()
What is this symbol's name?
http://www.myfilelink.co.uk/file.asp...94ff47b495aa61
PS: I still cant get the stupid image tags to work![]()
churn
Thanks, I have one more question, For ClicktoContinue, Does it click the thing too? Or do i have to do something with ClicktoContinue, Mouse or something?
SCAR Code:procedure Cookit;
begin
RadialWalk(3560306, 230, 200, 50, 1, -1);
MakeCompass('W')
LowestAngle;
KeyDown(38)
wait(200)
KeyUp(38)
if FindColorRightTol(x, y, 11119560, MIX1, MIY1, MIX2, MIY2, 5) then
begin
Mouse(x, y, 0, 0, True)
if FindColorRightTol(x, y, 5453577, MSX1, MSY1, MSX2, MSY2, 5) then
begin
Mouse(x, y, 0, 0, True)
FindNormalRandoms;
if FindColorRightTol(x, y, 11119560, 349, 240, 434, 654, 5) then
begin
Mouse(x, y, 1, 1, False)
ChooseOption(x, y, 'All')
end;
end;
end;
end;
I am trying to put it in Right after it clicks all, Because that is when you would get a, YAY! You gained a lvl message.. And then I need it to restart the Procedure, How would i do that?
ClickToContinue finds it and handles it.
The failsafe could be something like this:
SCAR Code:procedure Cookit;
begin
RadialWalk(3560306, 230, 200, 50, 1, -1);
MakeCompass('W')
LowestAngle;
KeyDown(38)
wait(200)0
KeyUp(38)
if FindColorRightTol(x, y, 11119560, MIX1, MIY1, MIX2, MIY2, 5) then
begin
Mouse(x, y, 0, 0, True)
if FindColorRightTol(x, y, 5453577, MSX1, MSY1, MSX2, MSY2, 5) then
begin
Mouse(x, y, 0, 0, True)
FindNormalRandoms;
if FindColorRightTol(x, y, 11119560, 349, 240, 434, 654, 5) then
begin
Mouse(x, y, 1, 1, False)
ChooseOption(x, y, 'All')
if ClickToContinue then // This is what I added
begin
Mouse(x, y, 1, 1, False)
ChooseOption(x, y, 'All')
end
end;
end;
end;
end;
There are currently 1 users browsing this thread. (0 members and 1 guests)