Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
20
Scripts/SubSystem/Knives Chat 3.0 Beta 6/Commands/Mail.cs
Normal file
20
Scripts/SubSystem/Knives Chat 3.0 Beta 6/Commands/Mail.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Knives.Chat3
|
||||
{
|
||||
public class Mail
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("Mail", AccessLevel.Player, new CommandEventHandler(OnMail));
|
||||
CommandSystem.Register("Ma", AccessLevel.Player, new CommandEventHandler(OnMail));
|
||||
}
|
||||
|
||||
private static void OnMail(CommandEventArgs args)
|
||||
{
|
||||
MailGump.SendTo(args.Mobile);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user