Page 1 of 1

Technicly question

Posted: 2009-05-23 23:15:19
by xinxilas
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?

Re: Technicly question

Posted: 2009-05-28 10:47:52
by Mirage

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