Would it be possible to use coordinates when using the wipe command? If I wanted to wipe an area of the map from corner to corner ie [wipe 5123 4095 0, 6143 4094 0. How would I add a modifier for this ?
Code:
[Usage( "WipeC" )]
[Description( "Wipes all items and npcs inside specified coordinates." )]
private static void WipeCoordinates_OnCommand( CommandEventArgs e )
{
BeginWipe( e.Mobile, WipeType.Items | WipeType.Mobiles );
}
public static void BeginWipe( Mobile from, WipeType type )
{
BoundingBoxPicker.Begin( from, new BoundingBoxCallback( WipeBox_Callback ), type );
}
Last edited: