public ShrinkTarget(Mobile from, IShrinkTool shrinkTool, bool staffCommand) : base(10, false, TargetFlags.None) { m_ShrinkTool = shrinkTool; m_StaffCommand = staffCommand; from.SendMessage("Target the pet you wish to shrink."); }
public ShrinkTarget( Mobile from, IShrinkTool shrinkTool, bool staffCommand ) : base( staffCommand ? 12 : 3, false, TargetFlags.None ) { m_ShrinkTool = shrinkTool; m_StaffCommand = staffCommand; from.SendMessage( "What do you wish to shrink?" ); }
public ShrinkTarget(Mobile from, IShrinkTool shrinkTool) : base(10, false, TargetFlags.None) { m_ShrinkTool = shrinkTool; from.SendMessage("Target the pet you wish to shrink."); }
public ShrinkTarget(Mobile from, IShrinkTool shrinkTool, bool staffCommand) : base(staffCommand ? 12 : 3, false, TargetFlags.None) { m_ShrinkTool = shrinkTool; m_StaffCommand = staffCommand; from.SendMessage("What do you wish to shrink?"); }