UOsteam macro

Malkraven

Grandmaster
Ok im just switching over to try this uosteam and i come across this problem im sure it probably has a simple solution.

on razor using the Heal / Greater heal option it cast and targets self if your not 100% hitpoints, If your 100% hp it gives you a Target icon so u can cross heal easily.

with UOsteam this is not the case can this be fixed or does it require a macro?

ive tried macroing it like this but it fails atm is there an easier way or can someone tell me what im missing in the macro?

if ! hits = maxhits

cast "greater heal"

cleartargetqueue

else

cast "greater heal"

waitingfortarget 100

target self

I know i can use Healfriend and heal separatly but id like to do this aswell
 
Last edited by a moderator:

steve-o

Grandmaster
i think it's

if hits != maxhits

! in front of the things from what i understood is used to disable queue

"exclamation" is a suffix and its usage is related to its command, for example on targeting functions it disables targeting queue. If a command supports that symbol you'll be able to verify the effects on its description.
 

Malkraven

Grandmaster
i think it's

if hits != maxhits

! in front of the things from what i understood is used to disable queue

"exclamation" is a suffix and its usage is related to its command, for example on targeting functions it disables targeting queue. If a command supports that symbol you'll be able to verify the effects on its description.

Right thanks ill play about with it and go back to the documantation
 
Top