well if you find the cowhide/raw meat colors just do
SCAR Code:
procedure FindBones;
begin
if FindColorTolerance(x, y, cowhidecolor/meatcolor here, msx1, msy1, msx2, msy2, 5) then//finds color
begin
Mouse(x, y, 3, 3, False)
if not(ChooseOption('one')) then//chooses option bones
Exit;
end else
Exit;
end.
or
SCAR Code:
procedure FindBones;
begin
if (FindObjCustom(X, Y, ['owh', 'whi', 'hide'], [whatevercolor], 3)) then//finds object
begin
Mouse(x, y, 3, 3, False)
if not(ChosoeOption('one')) then//chooses option bones
Exit;
end else
Exit;
end.