To everyone running a script that uses SmartColors, Update to Dev Revision 400+ NOW.
There was a big flaw that would return false falses, and it has now been fixed.
old:
SCAR Code:if ClickType = LEFT_CLICK then
Mouse(x, y, 0, 0, True)
else begin
Mouse(x, y, 0, 0, false);
ChooseOptionMulti(Rock.Options);
end;
Result := DidRedClick;
new:
SCAR Code:if ClickType = LEFT_CLICK then
begin
Mouse(x, y, 0, 0, True);
Result := DidRedClick;
end else begin
Mouse(x, y, 0, 0, false);
Result := ChooseOptionMulti(Rock.Options);
end;
So if you are using a script that uses SmartColors, update your revision so that it works properly
My apologies to anyone who had been relying on SC and it had at some point failed.
Rasta Magician










Reply With Quote


