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/Friends.cs
Normal file
20
Scripts/SubSystem/Knives Chat 3.0 Beta 6/Commands/Friends.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Commands;
|
||||
|
||||
namespace Knives.Chat3
|
||||
{
|
||||
public class Friends
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
CommandSystem.Register("Friends", AccessLevel.Player, new CommandEventHandler(OnFriends));
|
||||
CommandSystem.Register("Fri", AccessLevel.Player, new CommandEventHandler(OnFriends));
|
||||
}
|
||||
|
||||
private static void OnFriends(CommandEventArgs args)
|
||||
{
|
||||
FriendsGump.SendTo(args.Mobile);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user