22 lines
No EOL
685 B
C#
22 lines
No EOL
685 B
C#
using Server.Network;
|
|
|
|
namespace Server
|
|
{
|
|
public class MessageHelper
|
|
{
|
|
public static void SendLocalizedMessageTo(Item from, Mobile to, int number, int hue)
|
|
{
|
|
SendLocalizedMessageTo(from, to, number, "", hue);
|
|
}
|
|
|
|
public static void SendLocalizedMessageTo(Item from, Mobile to, int number, string args, int hue)
|
|
{
|
|
to.Send(new MessageLocalized(from.Serial, from.ItemID, MessageType.Regular, hue, 3, number, "", args));
|
|
}
|
|
|
|
public static void SendMessageTo(Item from, Mobile to, string text, int hue)
|
|
{
|
|
to.Send(new UnicodeMessage(from.Serial, from.ItemID, MessageType.Regular, hue, 3, "ENU", "", text));
|
|
}
|
|
}
|
|
} |