Пример #1
0
        public EquipInfoGump(Scripts.Mythik.Mobiles.MythikPlayerMobile from, Item item) : base(from.GetGumpLoc(typeof(EquipInfoGump)).Item1, from.GetGumpLoc(typeof(EquipInfoGump)).Item2)
        {
            from.CloseGump(typeof(EquipInfoGump));
            this.Closable   = true;
            this.Disposable = true;
            this.Dragable   = true;
            this.Resizable  = false;
            this.AddPage(0);
            var height = 200;

            if (item != null)
            {
                height = CliLoc.GetPropertiesList(item).Count * 23;
            }
            height += 5;
            this.AddBackground(2, 8, 196, 46 + height, 9270);
            this.AddBackground(9, 17, 182, 29 + height, 9270);
            this.AddAlphaRegion(0, 7, 191, 50 + height);
            this.AddButton(156, 20, 4011, 4012, 1, GumpButtonType.Reply, 0);
            if (item == null)
            {
                return;
            }
            var text       = @"<CENTER><BASEFONT COLOR=GREEN>";
            var textHeader = @"<CENTER><BASEFONT COLOR=WHITE>";
            int y          = 20;
            //if (string.IsNullOrWhiteSpace(item.Name))
            //    AddHtmlLocalized(98, y += 17, 100, 15, item.LabelNumber, false, false);
            // else
            //    AddHtml(98, y += 17, 100, 15, item.Name, false, false);
            int cnt = 0;

            foreach (var prop in CliLoc.GetPropertiesList(item))
            {
                if (cnt == 0 && prop?.Length > 1)
                {
                    AddHtml(18, y += 23, 160, 17, textHeader + char.ToUpper(prop[0]) + prop.Substring(1), false, false);
                }
                else
                {
                    AddHtml(18, y += 23, 160, 17, text + prop, false, false);
                }
                cnt++;

                /*if (prop.Item2 == null)
                 *  AddHtmlLocalized(98, y += 17, 100, 15, prop.Item1, false, false);
                 * else
                 *  AddHtmlLocalized(98, y += 17, 100, 15, prop.Item1, prop.Item2, 0, false, false);*/
            }
            //this.AddHtml(90, 87, 119, 231, text, (bool)false, (bool)false);
        }
Пример #2
0
 public EquipInfoGump(Scripts.Mythik.Mobiles.MythikPlayerMobile from) : this(from, null)
 {
 }