Beispiel #1
0
 private static void Dupe_OnCommand( Server.Commands.CommandEventArgs e )
 {
     int amount = 1;
     if ( e.Length >= 1 )
         amount = e.GetInt32( 0 );
     e.Mobile.Target = new DupeTarget( false, amount > 0 ? amount : 1 );
     e.Mobile.SendMessage( "What do you wish to dupe?" );
 }