Server.SkillHandlers.Peacemaking.OnPickedInstrument C# (CSharp) Méthode

OnPickedInstrument() public static méthode

public static OnPickedInstrument ( Mobile from, BaseInstrument instrument ) : void
from Mobile
instrument Server.Items.BaseInstrument
Résultat void
		public static void OnPickedInstrument( Mobile from, BaseInstrument instrument )
		{
			from.RevealingAction();
			from.SendLocalizedMessage( 1049525 ); // Whom do you wish to calm?
			from.Target = new InternalTarget( from, instrument );
			from.NextSkillTime = DateTime.Now + TimeSpan.FromHours( 6.0 );
		}