예제 #1
0
		private static void OnErrors( CommandInfo e )
		{
			if ( e.ArgString == null || e.ArgString == "" )
				new ErrorsGump( e.Mobile );
			else
				Report( e.ArgString + " - " + e.Mobile.Name );
		}
예제 #2
0
 private static void OnErrors(CommandInfo e)
 {
     if (string.IsNullOrEmpty(e.ArgString))
     {
         new ErrorsGump(e.Mobile);
     }
     else
     {
         Report(e.ArgString + " - " + e.Mobile.Name);
     }
 }
예제 #3
0
 private static void OnHouses(CommandInfo info)
 {
     new TownHousesGump(info.Mobile);
 }