Code: Select all
Lockpicks;
QUOTE
Program Lockpicks;
var stime : TDateTime;
{$Include 'all.inc'}
Begin
FindDistance := 1;
while true do
begin
stime := Now;
waittargetobject(findtype($1BF2,ground));
useobject(findtype($1EB9,ground));
waitgump('5371');
repeat
InJournalBetweenTimes('You create the item|You make an exceptional item|destroy', stime,
Now);
wait(1000);
until (LineCount >= 1) or (Now > stime + (0.5/1440));
hungry(1, ground);
end;
END.