ModernUO/Projects/UOContent/Engines/UltimaStore/UltimaStorePackets.cs

17 lines
475 B
C#

using Server.Network;
namespace Server.Engines.UltimaStore
{
public static class UltimaStorePackets
{
public static void Configure()
{
IncomingPackets.Register(0xFA, 1, true, UltimaStoreOpenRequest);
}
public static void UltimaStoreOpenRequest(NetState state, CircularBufferReader reader, ref int packetLength)
{
state.Mobile.SendMessage("Ultima Store is not currently available.");
}
}
}