Loot s pola !

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
BlasTin
Posts: 17
Joined: 2008-02-16 10:45:17
Location: ...
Contact:

Loot s pola !

Post by BlasTin »

sub Loot2()
uo.Set('finddistance','3')
uo.Ignore('self')
uo.FindType('-1','-1','ground')
while uo.FindCount() && uo.Weight <= 600
uo.findtype('-1','-1','ground')
uo.moveitem('finditem','all','backpack')
wait(750)
wend
uo.IgnoreReset()
endsub

Почему когда он что-то залутал не выключается ??
..l.
Kynep
Expert!
Posts: 1348
Joined: 2006-02-07 08:51:40
Location: г. Старый Оскол
Contact:

Re: Loot s pola !

Post by Kynep »

BlasTin wrote:
Почему когда он что-то залутал не выключается ??


Это:

Code: Select all

while uo.FindCount() && uo.Weight <= 600

Замени на это:

Code: Select all

while uo.FindCount() > 0
Post Reply