示例#1
0
 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.");
 }
示例#2
0
 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.");
 }
示例#3
0
		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.");
 }
示例#5
0
 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?");
 }