Exemplo n.º 1
0
        /*public CraftGump( Mobile from, CraftSystem craftSystem, BaseTool tool ): this( from, craftSystem, -1, -1, tool, null )
         *      {
         *      }*/

        public CraftGump(Mobile from, CraftSystem craftSystem, BaseTool tool, object notice) : this(from, craftSystem, tool, notice, CraftPage.None)
        {
        }
Exemplo n.º 2
0
 public InternalTarget(CraftSystem craftSystem, RepairDeed deed) : base(2, false, TargetFlags.None)
 {
     m_CraftSystem = craftSystem;
     m_Deed        = deed;
 }
Exemplo n.º 3
0
 public static void Do(Mobile from, CraftSystem craftSystem, RepairDeed deed)
 {
     from.Target = new InternalTarget(craftSystem, deed);
     from.SendLocalizedMessage(1044276); // Target an item to repair.
 }
Exemplo n.º 4
0
 public InternalTarget(CraftSystem craftSystem, BaseTool tool) : base(2, false, TargetFlags.None)
 {
     m_CraftSystem = craftSystem;
     m_Tool        = tool;
 }
Exemplo n.º 5
0
 public static void Do(Mobile from, CraftSystem craftSystem, BaseTool tool)
 {
     from.Target = new InternalTarget(craftSystem, tool);
     from.SendLocalizedMessage(1044276); // Target an item to repair.
 }