Search found 4 matches

by John Bosoy
2013-09-09 21:35:01
Forum: I need script!
Topic: AutoCure
Replies: 6
Views: 2616

Re: AutoCure

sub drink_cure()
while not uo.dead()
While UO.Poisoned()
If uo.Count('0x0F07') > 0 Then
uo.unequip('Lhand',0x40106d68)
wait(600)
uo.usetype(0x0f07)
wait(600)
uo.equip('Lhand',0x40106d68)
wait(600)
Else
Wait(40)
EndIf
wend
wend
end sub

sub drink_cure()
while ...
by John Bosoy
2013-09-09 12:30:27
Forum: I need script!
Topic: AutoCure
Replies: 6
Views: 2616

Re: AutoCure

Помогите пожалуйста.
by John Bosoy
2013-09-08 15:35:37
Forum: I need script!
Topic: AutoCure
Replies: 6
Views: 2616

Re: AutoCure

Код нужно оформлять вот так, тогда у людей будет намного больше желания помогать тебе
sub AUTO_Cure()
while not uo.dead()
If uo.Poisoned() > 0 Then
If uo.Count('0x0F07') > 0 Then
uo.unequip('Rhand','0x401A4B7C')
wait(700)
repeat
If uo&#46;Count('0x0F07') < 1 Then
goto a ...
by John Bosoy
2013-09-08 15:00:12
Forum: I need script!
Topic: AutoCure
Replies: 6
Views: 2616

AutoCure

Подскажите что не так в скрипте, почему не работает?

sub AUTO_Cure()
while not uo.dead()
If uo.Poisoned() > 0 Then
If uo.Count('0x0F07') > 0 Then
uo.unequip('Rhand','0x401A4B7C')
wait(700)
repeat
If uo.Count('0x0F07') < 1 Then
goto a
EndIf
uo.usetype(0x0F07)
wait(700)
until uo.Poisoned ...