Esempio n. 1
0
            protected override void OnTarget(Mobile from, object targeted)
            {
                if (targeted is HenchmanFamiliarItem && from.Backpack != null)
                {
                    HenchmanFamiliarItem ball = targeted as HenchmanFamiliarItem;
                    Container            pack = from.Backpack;

                    int toConsume = 0;

                    if (ball.Charges < 50)
                    {
                        toConsume = 500;

                        if (BeggingPose(from) > 0)                           // LET US SEE IF THEY ARE BEGGING - WIZARD
                        {
                            toConsume = toConsume - (int)((from.Skills[SkillName.Begging].Value * 0.005) * toConsume);
                        }
                    }
                    else
                    {
                        m_Mage.SayTo(from, "That crystal ball has too many charges already.");
                    }

                    if (toConsume == 0)
                    {
                        return;
                    }

                    if (pack.ConsumeTotal(typeof(Gold), toConsume))
                    {
                        if (BeggingPose(from) > 0)
                        {
                            Titles.AwardKarma(from, -BeggingKarma(from), true);
                        }                                                                                                               // DO ANY KARMA LOSS
                        m_Mage.SayTo(from, "Your crystal ball is charged.");
                        from.SendMessage(String.Format("You pay {0} gold.", toConsume));
                        Effects.PlaySound(from.Location, from.Map, 0x5C1);
                        ball.Charges = ball.Charges + 5;
                    }
                    else
                    {
                        m_Mage.SayTo(from, "It would cost you {0} gold to have that charged.", toConsume);
                        from.SendMessage("You do not have enough gold.");
                    }
                }
                else
                {
                    m_Mage.SayTo(from, "That does not need my services.");
                }
            }
Esempio n. 2
0
        public override bool OnDragDrop(Mobile from, Item dropped)
        {
            if (dropped is Ruby)
            {
                int    Rubies   = dropped.Amount;
                string sMessage = "";

                if ((Rubies > 19) && (from.Skills[SkillName.Magery].Base >= 50 || from.Skills[SkillName.Necromancy].Base >= 50))
                {
                    sMessage = "Ahhh...this is generous of you. Here...have this as a token of the guild's gratitude.";
                    HenchmanFamiliarItem ball = new HenchmanFamiliarItem();
                    ball.FamiliarOwner = from.Serial;
                    from.AddToBackpack(ball);
                }
                else
                {
                    sMessage = "Thank you for these. Rubies are something we often look for.";
                }

                this.PrivateOverheadMessage(MessageType.Regular, 1153, false, sMessage, from.NetState);
                dropped.Delete();
            }
            else if (dropped is HenchmanFamiliarItem)
            {
                string sMessage = "";

                int HighSpellCaster = 0;
                if (from.Skills[SkillName.Magery].Base >= 50 || from.Skills[SkillName.Necromancy].Base >= 50)
                {
                    HighSpellCaster = 1;
                }
                if (from.Skills[SkillName.Magery].Base >= 100 || from.Skills[SkillName.Necromancy].Base >= 100)
                {
                    HighSpellCaster = 2;
                }

                if (HighSpellCaster > 0)
                {
                    HenchmanFamiliarItem ball = (HenchmanFamiliarItem)dropped;

                    if (ball.FamiliarType == 0x16)
                    {
                        ball.FamiliarType = 0xD9; sMessage = "Your familiar is now in the form of a dog.";
                    }
                    else if (ball.FamiliarType == 0xD9)
                    {
                        ball.FamiliarType = 238; sMessage = "Your familiar is now in the form of a rat.";
                    }
                    else if (ball.FamiliarType == 238)
                    {
                        ball.FamiliarType = 0xC9; sMessage = "Your familiar is now in the form of a cat.";
                    }
                    else if (ball.FamiliarType == 0xC9)
                    {
                        ball.FamiliarType = 0xD7; sMessage = "Your familiar is now in the form of a huge rat.";
                    }
                    else if (ball.FamiliarType == 0xD7)
                    {
                        ball.FamiliarType = 80; sMessage = "Your familiar is now in the form of a large toad.";
                    }
                    else if (ball.FamiliarType == 80)
                    {
                        ball.FamiliarType = 81; sMessage = "Your familiar is now in the form of a huge frog.";
                    }
                    else if (ball.FamiliarType == 81)
                    {
                        ball.FamiliarType = 340; sMessage = "Your familiar is now in the form of a large cat.";
                    }
                    else if (ball.FamiliarType == 340)
                    {
                        ball.FamiliarType = 277; sMessage = "Your familiar is now in the form of a wolf.";
                    }
                    else if (ball.FamiliarType == 277)
                    {
                        ball.FamiliarType = 0xCE; sMessage = "Your familiar is now in the form of a large lizard.";
                    }
                    else if (ball.FamiliarType == 0xCE && HighSpellCaster == 1)
                    {
                        ball.FamiliarType = 269; sMessage = "Your familiar is now in the form of a small dragon.";
                    }
                    else if (ball.FamiliarType == 0xCE && HighSpellCaster == 2)
                    {
                        ball.FamiliarType = 0x3C; sMessage = "Your familiar is now in the form of a dragon.";
                    }
                    else if (ball.FamiliarType == 269 || ball.FamiliarType == 0x3C)
                    {
                        ball.FamiliarType = 315; sMessage = "Your familiar is now in the form of a large scorpion.";
                    }
                    else if (ball.FamiliarType == 315)
                    {
                        ball.FamiliarType = 120; sMessage = "Your familiar is now in the form of a huge beetle.";
                    }
                    else if (ball.FamiliarType == 120)
                    {
                        ball.FamiliarType = 202; sMessage = "Your familiar is now in the form of an imp.";
                    }
                    else if (ball.FamiliarType == 202 && HighSpellCaster == 1)
                    {
                        ball.FamiliarType = 140; sMessage = "Your familiar is now in the form of a spider.";
                    }
                    else if (ball.FamiliarType == 202 && HighSpellCaster == 2)
                    {
                        ball.FamiliarType = 173; sMessage = "Your familiar is now in the form of a giant spider.";
                    }
                    else if (ball.FamiliarType == 140 || ball.FamiliarType == 173)
                    {
                        ball.FamiliarType = 317; sMessage = "Your familiar is now in the form of a bat.";
                    }
                    else if (ball.FamiliarType == 317)
                    {
                        ball.FamiliarType = 242; sMessage = "Your familiar is now in the form of a giant insect.";
                    }
                    else if (ball.FamiliarType == 242)
                    {
                        ball.FamiliarType = 0x15; sMessage = "Your familiar is now in the form of a serpent.";
                    }
                    else if (ball.FamiliarType == 0x15 && HighSpellCaster == 1)
                    {
                        ball.FamiliarType = 0x4; sMessage = "Your familiar is now in the form of a demon.";
                    }
                    else if (ball.FamiliarType == 0x15 && HighSpellCaster == 2)
                    {
                        ball.FamiliarType = 0x9; sMessage = "Your familiar is now in the form of a daemon.";
                    }
                    else if (ball.FamiliarType == 0x4 || ball.FamiliarType == 0x9)
                    {
                        ball.FamiliarType = 0x16; sMessage = "Your familiar is now in the form of a gazer.";
                    }

                    sMessage = "You would perhaps like a different familiar? " + sMessage;
                    from.AddToBackpack(ball);
                }
                else
                {
                    sMessage = "Thank you for this. I could only assume an apprentice spell caster lost this.";
                    dropped.Delete();
                }

                this.PrivateOverheadMessage(MessageType.Regular, 1153, false, sMessage, from.NetState);
            }
            return(base.OnDragDrop(from, dropped));
        }