Thanks
This is my script:
sub Antibleed()
repeat
wait(100)
until UO.InJournal("bleeding")
UO.DeleteJournal()
Healtime = (5+(0.5*((120-UO.Stamina)/10)))
If Heal > 10 THEN
UO.Say(",exec bandages")
Else
finaltime=(10 - Healtime)
wait(finaltime)
UO.Say(",exec bandages")
Endif
end sub
It wait the word "bleeding" in journal, and then it check stamina, to calculate the time of healing. If the time of healing is > 10 (bleed delay), start to bandage, else wait some seconds (finaltime) and then start to bandage..
i'have an error "Variable Undefined - Healtime", but i can't understand why..

thank you