Для рботы нужна модификация инжекта;) работать будет на ОЛДП версии
(берет деньги)
Перл
Code:
sub autograb{
while (!uo::dead()){
&wait(100);
if (uo::getserial('lastcorpse') eq uo::getserial('lastcontainer')){
uo::findtype(0xeed, -1, 'lastcontainer');
if (uo::findcount){
uo::grab(0, 'finditem');
&wait(700);
}
uo::set('lastcontainer', uo::getserial);
}
}
}Стандартный
Code:
sub autograb()
while not uo.dead()
wait(100)
if (uo.getserial("lastcorpse") == uo.getserial("lastcontainer")) then
uo.findtype("0xeed", -1, "lastcontainer")
if (uo.findcount) then
uo.grab(0, "finditem")
wait(700)
end if
uo.set("lastcontainer", uo.getserial())
end if
wend
end sub