#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
47
Scripts/Commands/Admin/AreaLog.cs
Normal file
47
Scripts/Commands/Admin/AreaLog.cs
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
using System;
|
||||
using Server;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Server.Misc;
|
||||
using Server.Items;
|
||||
using Server.Network;
|
||||
using Server.Commands;
|
||||
using Server.Commands.Generic;
|
||||
using Server.Mobiles;
|
||||
using Server.Accounting;
|
||||
using Server.Regions;
|
||||
using System.IO;
|
||||
using Server.Targeting;
|
||||
using System.Text;
|
||||
|
||||
namespace Server.Scripts.Commands
|
||||
{
|
||||
public class AreaLog
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("AreaLog", AccessLevel.Counselor, new CommandEventHandler( AreaLogs ));
|
||||
}
|
||||
|
||||
[Usage("AreaLog")]
|
||||
[Description("Records the x and y coordinates of an area.")]
|
||||
public static void AreaLogs( CommandEventArgs e )
|
||||
{
|
||||
e.Mobile.SendMessage( "What area do you want to log?" );
|
||||
BeginArea( e.Mobile );
|
||||
}
|
||||
|
||||
public static void BeginArea( Mobile mob )
|
||||
{
|
||||
BoundingBoxPicker.Begin(mob, new BoundingBoxCallback(Area_Callback), new object[]{ "area.txt" } );
|
||||
}
|
||||
|
||||
private static void Area_Callback(Mobile mob, Map map, Point3D start, Point3D end, object state )
|
||||
{
|
||||
StreamWriter w = File.AppendText("area.txt");
|
||||
w.WriteLine( "<rect x=\"" + (start.X - 0) + "\" y=\"" + (start.Y - 0) + "\" width=\"" + ( end.X - start.X + 1 ) + "\" height=\"" + ( end.Y - start.Y + 1 ) + "\" />" );
|
||||
w.Close();
|
||||
mob.SendMessage( ( start.X - 1 ) + " " + ( start.Y - 1 ) + " " + ( end.X + 1 ) + " " + ( end.Y + 1 ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue