ScriptUO

Official ScriptUO EasyUO Scripts => Submit your Script => Topic started by: bendel on January 10, 2016, 03:08:28 PM

Title: simple taming trainer (mastery)
Post by: bendel on January 10, 2016, 03:08:28 PM
Hi,

i have not found any script to raise 90 to 120 taming using masteries, so i just made an little loop for it.

be sure u have an maximum of MR and if possible Focus & Medit skill !
in 2 days(full) i raise 90-120.

Code: [Select]
display Target your pet!
set #targcurs 1
set %mana 1
while #targcurs = 1
{
wait 1
}
set %petid #LTARGETID
repeat
{
finditem %petid G
if #findcnt < 1
{
gosub getapet
}
if #mana > %mana
{
event macro 15  744
target
event macro 22 0
wait 10
}
}
until #false
return
sub getapet
halt
return



Keep calm and raise your skills.
Title: Re: simple taming trainer (mastery)
Post by: Endless Night on January 11, 2016, 05:42:00 AM
Nice.. finally an easy way to train taming
Title: Re: simple taming trainer (mastery)
Post by: bendel on January 12, 2016, 03:23:11 AM
yeah, the +5 taming SOT at 30 mil is a bit expansive too...
Title: Re: simple taming trainer (mastery)
Post by: danielbatman on February 21, 2016, 10:54:54 AM
Which mastery are you using in this script? I target my pet and nothing happens. Was trying to figure out what I am doing wrong.
Title: Re: simple taming trainer (mastery)
Post by: bendel on February 21, 2016, 12:36:13 PM
Which mastery are you using in this script? I target my pet and nothing happens. Was trying to figure out what I am doing wrong.

Hello,  it's using "Combat Training", u need the Book of Masteries left click and use Animal Taming.
 U need also minimum to eat Volume I  Animal Taming Primer.
Title: Re: simple taming trainer (mastery)
Post by: danielbatman on February 21, 2016, 12:48:53 PM
I start the script, it comes up with target my pet but then nothing happens.
Title: Re: simple taming trainer (mastery)
Post by: bendel on February 21, 2016, 12:57:56 PM
i send you pm
Title: Re: simple taming trainer (mastery)
Post by: Bseen on April 15, 2016, 07:51:03 AM
Sorry for my newbie Question , but how do i obtain a book of mastery? Any prequesites necessary? Skilllvl etc? I bought primer on animal taming but does Not seem to work. Just restarted uo from an old Account and am overwhelmed again. I have taming 102 and lore 105.
Title: Re: simple taming trainer (mastery)
Post by: The Ghost on April 15, 2016, 08:32:05 AM
Book can be obtains from doing various quest. 
1) new land of Oden that a dude near the gate that give a random quest.
2) go to Britain at the music hall,  do any of the 3 quests ( peace/provo or disco) and receive a book.   Book can be transfer or sold to any one. 

To use the mastery  book, right click and select the  mastery you wish to use.   You can change mastery after a cold down of 5 min I believe.
Title: Re: simple taming trainer (mastery)
Post by: Bseen on April 15, 2016, 10:41:53 PM
Thanks!

Working like a charm!
Title: Re: simple taming trainer (mastery)
Post by: Breakin Knews on August 01, 2016, 04:25:30 PM
After target pet it doesnt do anything. not sure what is wrong..
Title: Re: simple taming trainer (mastery)
Post by: Oracle on July 07, 2017, 12:19:52 PM
I am trying this Script:

Taming is at 101. I have the Masteries Book selected for Animal Taming, I ate the Level 2 Primer, then I tamed a Bull in Jhelom Farms.  I select my Pet, the Bull and it opens up a menu with 3 selections: Empowerment, As One, and  Beserk.  After I select one, it targets the Pet and goes until my Mana runs out and then after meditating the menu comes up again...asking me to select another skill.  Shouldn't it be more automated?  Is there a step that I am missing?



Oracle

Title: Re: simple taming trainer (mastery)
Post by: Biza on July 07, 2017, 04:32:09 PM
After targeting you're animal you shouldn't be doing anything. Ignore that gump and let the script run.

Let me edit this, there are two of these out there and I have never used this one. The other one uses TMs med sub I am not sure if this one is working or not. I am sure however that you do NOT need to actually select a mastery. It is casting the spell on your pet and the initial mana cost ONLY. If you select one then it will only cost you more mana and slow you're training down considerably.
Title: Re: simple taming trainer (mastery)
Post by: Oracle on July 07, 2017, 10:05:51 PM
After targeting you're animal you shouldn't be doing anything. Ignore that gump and let the script run.

Let me edit this, there are two of these out there and I have never used this one. The other one uses TMs med sub I am not sure if this one is working or not. I am sure however that you do NOT need to actually select a mastery. It is casting the spell on your pet and the initial mana cost ONLY. If you select one then it will only cost you more mana and slow you're training down considerably.

Thank you Biza, 

I did just what you said and it worked perfectly.  There is a slight delay in the beginning for the Script to get everything activated, but it works like a charm right after that.  I did purchase a Lvl 2 Taming Mastery and I am using that now.  It doesn't move that fast, but the skill does climb.  I no longer have to run around and chase animals to tame.  I just need to tame one Pet.  Bendel, if you put some easy to follow instructions at the top of the Script, you will have a winner.

Title: Re: simple taming trainer (mastery)
Post by: sumsum on September 10, 2017, 04:11:38 PM
Good script thanks! I did make a few changes for me. I changed %mana 1, to %mana 25. BC you need 25 mana to cast. I also added and spot to med. Here's what that looks like.

Thanks

if #mana < %mana
{
gosub med
}
else
{
event macro 15  744
target
event macro 22 0
wait 10
}



sub med
event macro 13 46
wait 2
scanjournal 1
if You_cannot_focus_your_concentration in #journal
  {
  wait 12s
  gosub med
  }
  else
  {
  wait 25s
    return
  }
Title: Re: simple taming trainer (mastery)
Post by: sumsum on September 22, 2017, 07:35:11 AM
This works better for med:

sub med
event macro 13 46
wait 2
scanjournal 1
if You_cannot_focus_your_concentration in #journal
  {
  wait 12s
  gosub med
  }
  else
  {
  repeat
  wait 2s
  until #MANA >= #MAXMANA - 10
    return
  }
Title: Re: simple taming trainer (mastery)
Post by: The Ghost on September 22, 2017, 03:48:02 PM
I had to rebuild the Med sub aswell and I add a min to cast,    At 210 Mana  I make sure  the lowest I get was 35 so I can med every time