I was wondering if scripts like this:
sub arrowself()
repeat
If (UO.LastMessage()=="you are frozzen.") <>0 Then
uo.cast('Magic Arrow','self')
Wait(1700)
endif
wait(200)
until UO.Dead()
end sub
or an with bandageself when life is bad, runing all the time (for pvp) could laggy the client!
Maybe a little, or just NO lag issues?
Technicly question
Moderators: Murderator+, Murderator
Re: Technicly question
Code: Select all
sub arrowself()
repeat
UO.DeleteJournal() ; <---
If (UO.LastMessage()=="you are frozzen.") <>0 Then
uo.cast('Magic Arrow','self')
Wait(1700)
endif
wait(200)
until UO.Dead()
end sub