I have been reading and following along with all the tutorials in the Beginner section.
I will update this as I work on it.
Right now, I just tried to something basic, where if it finds a color on the screen,
it will Writeln('FoundColor')
I got an error though, so I just wanted somebody to see what I did incorrectly, so I can learn for the next time.
SCAR Code:program New;
var
MonsterColor : integer;
const
MonsterColor=16777215
begin
Procedure Findin;
Findcolor(x,y,MonsterColor,10,10)
If FindColor
then
Writeln('Found Color')
end else
Writeln('Didn't find Color')
end.
Also, please tell me how I did on the standards.
Thank you :)
