Back to "taming" tags

Simple Animal Taming by Jaseowns

Description: Update the findtype to the mob you want to tame :D

1# Simple Animal Training by Jaseowns
2# UO Outlands
3@setvar! tameThisThing 0
4while 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
5    getlabel janimal desc
6    if "released" in desc
7        // ignore them
8        @ignore janimal
9    elseif "tame" in desc or "bonded" in desc
10        // ignore them
11        @ignore janimal
12    else
13        @setvar! tameThisThing janimal
14        break
15    endif
16endwhile
17
18if tameThisThing != 0
19    while not dead tameThisThing 
20        overhead "¶ we trying to tame ¶" 88 tameThisThing
21        getlabel tameThisThing desc
22        if "released" in desc or "tame" in desc or "bonded" in desc
23            break
24        endif
25        useskill "taming"
26        wft 500
27        target tameThisThing
28    endwhile
29else
30    overhead "Nothing to tame" 34
31endif