I am making an Ultimate Fletcher and I need some help on it. When you click the knife and then click the logs, 3 pictures come up with words under them like this:

There are only 4 pictures because these are regular logs that I am using for an example. Anything over regular logs has only 3 pictures. Anyways, I want it to find the Long Bow image or words and put the mouse over it until the UpText is "Make 1" and then right click it and selece the "Fletch X" option. I have this as of right now, but I don't think that it will work.
SCAR Code:
Procedure FletchBows;
Begin
if (BowType = 'Normal') and (BowSize = 'Long') then
Begin
OpenInventory;
UseItem(1);
Wait(100+random(200));
MouseItem(2,True);
Wait(1000+random(1000));
if (InChat('Long Bow')) then <---------- Right Here
Begin
MMouse(x,y,2,2);
if (IsUpText('ake 1')) then
Begin
Mouse(x,y,2,2,False);
Wait(200+random(100));
ClickOption('X',3);
Wait(1000+random(500));
SendText('30'+chr(13));
Repeat
FindRandoms;
QuickRandoms;
RCExamine;
AutoTalker;
NoBannage;
Until (InChat('You have run out of logs.'));
End;
End;
End;
End;
I don't think that the InChat procedure will support words as shown in the picture. Any suggestions?
Thanks!
- Da Der Der