示例#1
0
        public SHMaceHeadPrompt(Mobile from, SmallHandle hilt, MaceHead blade)
        {
            m_Hilt = hilt;
            m_Blade = blade;

            from.SendMessage("Please type in the code for the mace you would like to make:");
            from.SendMessage(" 1 - Flanged Mace ");
            from.SendMessage(" 2 - Mace ");
            from.SendMessage(" 3 - War Mace");

            if (((PlayerMobile)from).Nation == Nation.Azhuran)
            {
                from.SendMessage(" 4 - Azhuran Mace ");
                from.SendMessage(" 5 - Azhuran War Mace ");
            }
        }
示例#2
0
        public LHMaceHeadPrompt(Mobile from, LargeHandle hilt, MaceHead blade)
        {
            m_Hilt = hilt;
            m_Blade = blade;

            if (((PlayerMobile)from).Nation != Nation.Khemetar && ((PlayerMobile)from).Nation != Nation.Tyrean && ((PlayerMobile)from).Nation != Nation.Vhalurian)
                OnResponse(from, "1");
            else
            {
                from.SendMessage("Please type the code for the kind of mace would you like to make:");
                from.SendMessage(" 1 - Maul ");

                if (((PlayerMobile)from).Nation == Nation.Khemetar)
                    from.SendMessage(" 2 - Khemetar War Mace ");
                if (((PlayerMobile)from).Nation == Nation.Tyrean)
                    from.SendMessage(" 3 - Tyrean War Mace ");
                if (((PlayerMobile)from).Nation == Nation.Vhalurian)
                    from.SendMessage(" 4 - Vhalurian Mace ");
            }
        }