SCAR Code:
If FindColorTolerance(x, y, 5005959, MIX1, MIY1, MIX2, MIY2, 10) then
begin
Xx:=x; Xy:=y;
If (GetMousePos(x, y) > Xx, Xy)) Then
//Stuff Here
Say I wanted to do something like that. How would I go about it? That is giving me this error:
Line 55: [Error] (16072:27): Type mismatch in script
SCAR Code:
If FindColorTolerance(x, y, 5005959, MIX1, MIY1, MIX2, MIY2, 10) then
begin
Xx:=x; Xy:=y;
If (GetMousePos(x, y) > (Xx, Xy)) Then
If I do that, it tells me it wants a close round, which I don't understand why. Anyways, could anyone fix that up for me?
.