how to use a set of info like so
TPA[0].x := 59
TPA[0].y := 162
TPA[1].x := 59
TPA[1].y := 163
TPA[2].x := 59
TPA[2].y := 164
TPA[3].x := 59
TPA[3].y := 165
put it in a way so i can call it later for use like this
something along those lines. thanks in advancedSCAR Code:for i:= 0 to high(tpa) do
begin
if(getcolor(tpa[i].x,tpa[i].y)=23121)then
begin
writeln('foundcolor');
exit;
end;
end;


Reply With Quote



