Code: Select all
program wkaf;
begin
while true do
begin
if not dead then
begin
if life < 45 then Drop($51C9CD11,1,0,-1,0);
Wait(100);
if life = 115 then Grab($51C9CD11,1);
Wait(100);
end;
end;
end.Code: Select all
program wkaf;
begin
while true do
begin
if not dead then
begin
if life < 45 then Drop($51C9CD11,1,0,-1,0);
Wait(100);
if life = 115 then Grab($51C9CD11,1);
Wait(100);
end;
end;
end.Code: Select all
program wkaf; 
begin 
	while true do 
	begin 
		if not dead then 
		begin 
			if life < 45 then
			begin
				Drop($51C9CD11,1,0,-1,0);
				repeat
					Wait(100); 
				until life = 115
				if life = 115 then Grab($51C9CD11,1);
			end;
		end; 
	end; 
end.