Files
abysmal-isle/Scripts/Commands/TimeStamp.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

21 lines
605 B
C#

using System;
namespace Server.Commands
{
public class TimeStamp
{
public static void Initialize()
{
CommandSystem.Register("TimeStamp", AccessLevel.Player, new CommandEventHandler(CheckTime_OnCommand));
}
[Usage("TimeStamp")]
[Description("Check's Your Servers Current Date And Time")]
public static void CheckTime_OnCommand(CommandEventArgs e)
{
Mobile m = e.Mobile;
DateTime now = DateTime.UtcNow;
m.SendMessage("The Current Date And Time Is " + now + "(EST)");
}
}
}