コード例 #1
0
 public override void OnComponentUsed(AddonComponent comp, Mobile from)
 {
     if (comp.ItemID == 0x0FF4)
     {
         if (!from.InRange(comp.GetWorldLocation(), 2))
         {
             from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1019045); // I can't reach that.
         }
         else
         {
             Gump g = new Gump(35, 70);
             g.AddImage(0, 0, 500);
             g.AddHtmlLocalized(40, 17, 150, 220, 1055141, false, false);
             from.SendGump(g);
         }
     }
 }