автохелинг
Posted: 2005-09-21 09:13:15
Помготите со скриптом нада чтобы сам юзал бандаги когда хп ниже определенного количества 

Code: Select all
Var MinLife = 70
While not uo.Dead()
While uo.Life < MinLife
uo.BandageSelf()
Wait(2000)
Endif
Wait(100)
wend
Unreal Pro Bw wrote:If UO.Life<50 Then
UO.UseType(0x182B) #butilki kotorije bude s pitj
Corwin wrote:Code: Select all
Var MinLife = 70
While not uo.Dead()
While uo.Life < MinLife
uo.BandageSelf()
Wait(2000)
Endif
Wait(100)
wend
nEo1987 wrote:Corwin wrote:[code]
uo.Life
Code: Select all
sub test()
While not UO.Dead()
If UO.Life < 50
UO.UseType('') ##тип ГХ
Wait(2000)
Endif
If UO.Mana < 50
UO.UseType('') ##тип ТМ
Wait(2000)
Endif
Wait(100)
wend
UO.Print('Поздравляю, ты умер!')
endsub