Server.SkillHandlers.Discordance.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( 1049541 ); // Choose the target for your song of discordance.
			from.Target = new DiscordanceTarget( from, instrument );
			from.NextSkillTime = DateTime.Now + TimeSpan.FromSeconds( 6.0 );
		}