public override bool CheckFeed(Mobile from, Item dropped)
{
if (dropped is BowlOfBlackrockStew)
{
if (PowerLevel >= MaxPower)
{
from.SendLocalizedMessage(1115755); // The creature looks at you strangely and shakes its head no.
}
else
{
PowerLevel++;
if (PowerLevel >= MaxPower)
{
from.SendLocalizedMessage(1115753); // Your bane dragon is returned to maximum power by this stew.
}
else
{
from.SendLocalizedMessage(1115754); // Your bane dragon seems a bit peckish today and is not at full power.
}
return base.CheckFeed(from, dropped);
}
}
return false;
}
Go kill cows or something until you can feed him once, then re-stable it. Let me know if that works."The creature looks at you strangely and shakes its head no."
I understand. Hmm. There is a risk of losing it, since it is not bound, and at the current moment they are unique. Of course, there is also a second way to use the binding potion. Thank you, I saw everything in the code.
I agree the logic appears a bit off.I didn’t succeed. He used his Breath Attack skill, but still refused to eat. It seems to me not entirely logical. I have this pet on the OSI and it can eat food in any state there. And, of course, this is a risk of training and only then feed him. Then the question is, if he used his skill (Breath Attack)once, should his energy level decrease?