
Originally Posted by
Andyz55
Ok thanks lol. I dont really know what tpa is.. yeah im a noob on that subject lol. I'll read up on them before submitting to mems. Hey thanks alot on that site for sigs! I was looking really hard for one but i couldn't find it! Lol i made my sig from scratch and it took like an hour haha. Do you speak spanish? I made a few errors in there but i don't think they are major ones. (They were just things like spelling errors) Thanks alot for trying out my script, and thanks for the very positive feedback too!
I just need some more things to update lol. I cant update without problems!!
-Andy
lol no I dont speak spanish, I thought it was jiberish lol. You could try the google translator to translate it. Heres an example of a tpa, you can copy it, just give some credit, all you have to do it fill in the colors 
SCAR Code:
procedure YTPA;
var
D1TPA : TPointArray;
D1Point : TPoint;
begin
FindColorsTolerance(D1TPA, {color}, MSx1, MSy1, MSx2, MSy2, 5);
if Length(D1TPA) = 0 then FindColorsTolerance(D1TPA, {color}, MSX1, MSY1, MSX2, MSY2, 5);
for d := 1 to Low(D1TPA)do
begin
D1Point := D1TPA[d]
MMouse (D1Point.x, D1Point.y, 1, 1);
if (IsUpTextMultiCustom(['', ''])) then
begin
GetMousePos(x, y);
Mouse(x, y, 3, 3, True);
Wait(5500+random(250));
end;
Wait(5500+random(350));
end;
end;