I'll explain it anyways. (btw, rep doesn't really matter here XD)
FindObjMulti is an SRL function, so make sure you have right after you name the program and in your Main Loop.
Here is the, um, I dunno, instructions for FindObjMulti:
SCAR Code:
{*******************************************************************************
function FindObjMulti(Text: String; color1, color2, color3, tolerance: Integer): Boolean;
By: Unknown and modified by Ron.
Description: FindsObject using three colors
*******************************************************************************}
Here's an explanation:
SCAR Code:
FindObjMulti('Put the text that would be in the upper-left corner for the object here',Put one color of the object here, Put a second color here, Put one more color here, just put 10 or 20 here)
You'll probably want something like this:
SCAR Code:
Var
coord:TPoint;
Begin
If (FindObjMulti('icken',11382457,13355986,10329769,10)) Then
Begin
GetMousePos(coord.x,coord.y);
Mouse(coord.x,coord.y,2,2,false);
PopUp('ttack');
End;
End;
You could use other FindObj functions, just go to SRL/SRL/core/Object.scar in your SCAR origram files file, and look for instructions there. If you need help with another FindObj function, PM me 
EDIT: I wouldn't use FindObjMulti, I'd use FindObjMultiText (PM me if you don't get the instructions in the SRL/SRL/core/Object.scar file) I just like FindObjMultiText better XD