Кому не сложно добавте плиз + что надо сделать? чтобы при автостарте скрит загружался автоматом?
скрипт на хилинг...
sub main()
while not uo.dead()
healing()
wend
end sub
#########################Хилинг################################
sub healing()
var hive='0x410C4417'
var food='0x097B'
while uo.life > 70
uo.exec("usetype " + food)
uo.exec("useobject " + hive)
uo.exec("useobject " + hive)
uo.exec("bandageself")
wait((1 + ((uo.dex - uo.stamina)/15)/1.5 )*1000)
wend
while uo.life < uo.str
uo.exec("bandageself")
wait((1 + ((uo.dex - uo.stamina)/15)/1.5 )*1000)
wend
end sub