I don't think there is an eating procedure, but I can make one for you if you want, just tell me which foods to do, and for the fighting, change it from:
Code:
Procedure clickkiller;
begin
if FindObj(x, y, 'ttack', mousecolor, 35) then
mouse(x,y,3,3,false);
Chooseoption('ttack')
boredhuman;
randommovement;
wait(7000);
if(infight=true)then
repeat
boredhuman;
randommovement;
wait(7000);
until(infight=false)
end;
to:
Code:
Procedure clickkiller;
begin
if FindObj(x, y, 'ttack', mousecolor, 35) then
begin
mouse(x,y,3,3,false);
Chooseoption('ttack')
boredhuman;
randommovement;
wait(7000);
if(infight=true)then
begin
repeat
boredhuman;
randommovement;
wait(7000);
until(infight=false)
end;
end;
end;
that should fix it, after a if then statement, you need to put a being and end if you want it to do more then one code
so it'd be
Code:
if(condition) then
begin
code;
code;
code;
end;
or
Code:
if(condition) then
code;
code;
code;
I hope you can understand that, if not PM me for more help, also, let me know bout that eating. Or if you want help making an eating function/procedure.