[UO Steam] FiXXer's Healing Trainer

If you make a Client-side script you can publish it here for other players to use
Locked
User avatar
fixxer1963
Legendary Scribe
Posts: 271
Joined: Tue Apr 01, 2014 5:43 pm

[UO Steam] FiXXer's Healing Trainer

Post by fixxer1963 »

Code: Select all

// FiXXer's Healing Trainer *UO Steam*
// This works for the Crimson Cincture as is. If you want to use something else
// READ THIS Use the Object Inspector button and target the Item you want to use.. on the pop up window, get the Layer number.
if not @findalias 'strengthitem'
headmsg 'Select strength item'
promptalias 'strengthitem'
endif
while hits < maxhits
msg '[bandself'
pause 2000
endwhile
moveitem 'strengthitem' 'backpack' 82 84 0
pause 600
// Change the number 12 ...below... to match what layer you determined with Object Inspector button
equipitem 'strengthitem' 12
pause 600
msg '[bandself'
pause 1000
Hawke Armstrong/FiXXer
Jantra
Grandmaster Scribe
Posts: 72
Joined: Sun Apr 24, 2016 9:54 am

Re: [UO Steam] FiXXer's Healing Trainer

Post by Jantra »

Everything else is working, but I'm seeing a problem. None of the pauses actually work. It's trying to immediately apply bandages which isn't as big of an issue except in particular when it's in the while loop - it's trying to apply bandages as fast as possible and not let them finish to actually earn the skill point.
Locked