Page 1 of 1

Help me with macro [on poisoning]

Posted: 2004-08-17 18:09:16
by paulinho4life
What is the script, to do a action only when im poisoned ?

like..

on poisoning
cast An Nox

and what is the command to terminated a running script on the begining of other script, and in the end of that one load the another script again ?

Posted: 2004-08-18 07:07:12
by Thdin

Code: Select all


sub AutoCure()

Waitforpoison:

Repeat
Wait(200)
Until UO.InJournal("You feel")

UO.Cast('Cure','self')
Wait(2000)

goto Waitforpoison

endsub



Something quick I just typed out. It's not perfect, you can tweak it however you want, but it's the gist of it. Play around with it and see what works.