Server.MovementPath.Path_OnCommand C# (CSharp) Method

Path_OnCommand() public static method

public static Path_OnCommand ( Server.CommandEventArgs e ) : void
e Server.CommandEventArgs
return void
		public static void Path_OnCommand( CommandEventArgs e )
		{
			e.Mobile.BeginTarget( -1, true, TargetFlags.None, new TargetCallback( Path_OnTarget ) );
			e.Mobile.SendMessage( "Target a location and a path will be drawn there." );
		}