Code: Select all
sub magery()
repeat
while uo.mana < uo.int
uo.useskill("Meditation")
wait (2500)
wend
uo.cast('Night Sight','self')
wait (2000)
until uo.dead()
end sub
Moderators: Murderator+, Murderator
Code: Select all
sub magery()
repeat
while uo.mana < uo.int
uo.useskill("Meditation")
wait (2500)
wend
uo.cast('Night Sight','self')
wait (2000)
until uo.dead()
end sub
Code: Select all
sub UseMeditation()
var a
While UO.MANA < UO.INT
UO.DeleteJournal()
UO.UseSkill('Meditation')
repeat
wait(900)
until UO.InJournal("You are") OR UO.InJournal("You lose")
wend
end subМедитирует грамотно, спасибо. А как теперь сделать что бы после медитации переходил на каст НС на себя?Sfagnum wrote:процедурка на медитацию:Code: Select all
sub UseMeditation() var a While UO.MANA < UO.INT UO.DeleteJournal() UO.UseSkill('Meditation') repeat wait(900) until UO.InJournal("You are") OR UO.InJournal("You lose") wend end sub