Page 1 of 1
Discussion Question: Barding Skills on Tamed Pets
Posted: Tue Feb 22, 2011 8:37 am
by Mens Rea
Is it accurate that bards can use their barding skills on tamed pets?
I am not fully versed on exactly how barding skills work - I've never had one.
I think the "enticement" (the one that make animals/monsters follow you) is currently able to be used on tamed pets.
Accurate?
I am aware that you can provoke an untamed monster onto a pet, and that you can probably use peacemaking (I remember it being an area effect skill) on tamed pets.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Tue Feb 22, 2011 8:47 am
by Sandro
You can use any barding skill on tamed animals, and yes you can provoke 2 tamed dragons onto eachother but it will flag you as a criminal if the pets are blue.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Tue Feb 22, 2011 9:45 am
by Mens Rea
Accurate?
I just wonder if there was a message about not being able to provoke tamed pets... I can't remember what it was or whether it actually existed so my searches have been fruitless.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Tue Feb 22, 2011 10:57 am
by Sandro
Yes, the message is "this action will flag you criminal, confirm/deny"
in other words, the standard criminal gump warning
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Tue Feb 22, 2011 3:13 pm
by archaicsubrosa77
I thought you always got the message about the creature being too loyal to their master to be provoked?
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Tue Feb 22, 2011 11:51 pm
by Mens Rea
That's what it was!! Time to do some more searching and see what I can find.
Barding tamed animals is NEA IIRC and AFAIK.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Wed Feb 23, 2011 4:22 am
by nightshark
I do not believe it was possible to provoke pets on OSI. Same thing with being unable to provoke shopkeepers and hirelings.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Fri Mar 04, 2011 12:09 am
by ranger
I remember this much... At one time you could use music to lure people's tamed pets into moongates. I had a friend who loved doing that to people's Dragons in town. Due to grieving with it, it was disabled is what he said. I don't know when though (might ask him later at the next lan party). Shortly after that he got bored of the game because that was one of his favorite things to do in UO. He gave or sold his game to my dad, who then started playing it. When I saw people doing this in town on here I thought it was odd, but dismissed it. I was so young then, so I can't remember where exactly I was in the UO timeline, I know "we" just had the game and the expansion pack.
I realize this isn't the "provoke" skill? But the topic is about bard skills on tamed pets so it fits I'm guessing.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Fri Mar 04, 2011 12:14 am
by Derrick
Thanks for this recollection.
It's my understanding as well that enticement was usable on tamed pets. This was a mechanic that was added to the shard in a patch. I don't have the source in front of me that this was based on, but it shouldn't be hard to find.
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Fri Mar 04, 2011 12:16 am
by Panthor the Hated
I thought that was the entire point of enticement, otherwise it would be a crook-less herding skill clone right?
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Fri Mar 04, 2011 12:45 am
by archaicsubrosa77
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Fri Mar 04, 2011 2:57 am
by Kaivan
A brief check of the incite script from the demo reveals the following:
Code: Select all
if(Q4CJ(usedon))
{
bark(this, "They are too loyal to their master to be provoked.");
return(0x00);
}
This is the function Q4CJ:
Code: Select all
integer Q4CJ(object Q5H7)
{
if(!hasObjVar(Q5H7, "myBoss"))
{
return(0x00);
}
if(!hasObjVar(Q5H7, "myLoyalty"))
{
return(0x00);
}
integer Q525 = getObjVar(Q5H7, "myLoyalty");
if(Q525 < 0x01)
{
return(0x00);
}
return(0x01);
}
Basically, this is a boolean value that returns true if the target is a pet of a player, otherwise it returns false. This means that tamed/hired pets cannot be provoked.
Edit: The entice script has no such checks against tamed creatures, which means it is entirely possible, at least at the time of the demo, to entice tamed animals and creatures
Re: Discussion Question: Barding Skills on Tamed Pets
Posted: Fri Mar 04, 2011 3:59 pm
by Derrick
It looks like a loyalty of zero will allow the pet to be provoked; irrelevant though as a pet would be released at this point. Thanks for looking this up!