Technicly question

Ask for help

Moderators: Murderator+, Murderator

Post Reply
xinxilas
Posts: 78
Joined: 2009-03-10 09:43:01

Technicly question

Post 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?
Mirage
Posts: 2802
Joined: 2009-05-28 09:58:28
Location: Иваново
Contact:

Re: Technicly question

Post 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
Post Reply