Ejemplo n.º 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 );
		}
Ejemplo n.º 2
0
 private static void OnErrors(CommandInfo e)
 {
     if (string.IsNullOrEmpty(e.ArgString))
     {
         new ErrorsGump(e.Mobile);
     }
     else
     {
         Report(e.ArgString + " - " + e.Mobile.Name);
     }
 }
Ejemplo n.º 3
0
 private static void OnHouses(CommandInfo info)
 {
     new TownHousesGump(info.Mobile);
 }