Ive seen a few requests for a Eating procedure so i decided to make on quick if its already done then srry
SCAR Code:{*******************************************************************************
procedure EatFood(i: Integer);
By: J_pizzle
Description: Eats food at given position (1-28)
*******************************************************************************}
function EatItem(i: Integer): Boolean;
begin
Result := False;
if ExistsItem(i) then
begin
MouseItem(i, False);
if (WaitOptionEx('Eat', 'action', Clickleft, 250)) then
begin
Result := True;
Wait(RandomRange(50, 200));
end;
end;
end;





Reply With Quote



