Simple Animal Taming by Jaseowns
Description from the author:
# Simple Animal Training by Jaseowns
# UO Outlands
@setvar! tameThisThing 0
while findtype "a mongbat|a giant rat|a guar|a wolf|a familiar|a giant frog|a primordial whelp|a colossal frog|a giant bat|a monitor hatchling" ground -1 -1 8 as janimal
getlabel janimal desc
if "released" in desc
// ignore them
@ignore janimal
elseif "tame" in desc or "bonded" in desc
// ignore them
@ignore janimal
else
@setvar! tameThisThing janimal
break
endif
endwhile
if tameThisThing != 0
while not dead tameThisThing
overhead "¶ we trying to tame ¶" 88 tameThisThing
getlabel tameThisThing desc
if "released" in desc or "tame" in desc or "bonded" in desc
break
endif
useskill "taming"
wft 500
target tameThisThing
endwhile
else
overhead "Nothing to tame" 34
endifUpdate the findtype to the mob you want to tame :D