Esempio n. 1
0
        public override void Confirm(Mobile from)
        {
            if (m_Item == null || m_Item.Deleted)
            {
                return;
            }

            BaseCreature summon = m_Item.Summon;

            if (summon != null)
            {
                if (!summon.SetControlMaster(from))
                {
                    summon.Delete();
                }
                else
                {
                    from.SendLocalizedMessage(1049666);                       // Your pet has bonded with you!

                    summon.MoveToWorld(from.Location, from.Map);
                    summon.IsBonded = true;

                    summon.Skills.Wrestling.Base   = 100;
                    summon.Skills.Tactics.Base     = 100;
                    summon.Skills.MagicResist.Base = 100;
                    summon.Skills.Anatomy.Base     = 100;

                    Effects.PlaySound(summon.Location, summon.Map, summon.BaseSoundID);
                    Effects.SendLocationParticles(EffectItem.Create(summon.Location, summon.Map, EffectItem.DefaultDuration), 0x3728, 1, 10, 0x26B6);

                    m_Item.Release(from, summon);
                    m_Item.Delete();
                }
            }
        }
Esempio n. 2
0
        public override void Confirm(Mobile from)
        {
            if (m_Item == null || m_Item.Deleted)
            {
                return;
            }

            BaseCreature summon = m_Item.Summon;

            if (summon != null)
            {
                if (!summon.SetControlMaster(from))
                {
                    from.SendLocalizedMessage(1049607);                       // You have too many followers to control that creature.
                }
                else
                {
                    from.SendLocalizedMessage(1049666);                       // Your pet has bonded with you!

                    summon.MoveToWorld(from.Location, from.Map);
                    summon.IsBonded = true;

                    Effects.PlaySound(summon.Location, summon.Map, summon.BaseSoundID);
                    Effects.SendLocationParticles(EffectItem.Create(summon.Location, summon.Map, EffectItem.DefaultDuration), 0x3728, 1, 10, 0x26B6);

                    m_Item.Delete();
                }
            }
        }
Esempio n. 3
0
        public override int LabelNumber => 1075084;  // This statuette will be destroyed when its trapped creature is summoned. The creature will be bonded to you but will disappear if released. <br><br>Do you wish to proceed?

        public override void Confirm(Mobile from)
        {
            if (m_Item == null || m_Item.Deleted)
            {
                return;
            }

            BaseCreature summon = m_Item.Summon;

            if (summon != null)
            {
                if (!summon.SetControlMaster(from))
                {
                    summon.Delete();
                }
                else
                {
                    summon.MoveToWorld(from.Location, from.Map);
                    summon.PrivateOverheadMessage(MessageType.Regular, 0x3B2, 502799, from.NetState); // It seems to accept you as master.

                    summon.IsBonded = true;
                    from.SendLocalizedMessage(1049666); // Your pet has bonded with you!

                    summon.Skills.Wrestling.Base   = 100;
                    summon.Skills.Tactics.Base     = 100;
                    summon.Skills.MagicResist.Base = 100;
                    summon.Skills.Anatomy.Base     = 100;

                    PetTrainingHelper.GetAbilityProfile(summon, true).OnTame();

                    Effects.PlaySound(summon.Location, summon.Map, summon.BaseSoundID);
                    Effects.SendLocationParticles(EffectItem.Create(summon.Location, summon.Map, EffectItem.DefaultDuration), 0x3728, 1, 10, 0x26B6);

                    m_Item.Release(from, summon);
                    m_Item.Delete();
                }
            }
        }