18 lines
519 B
C#
18 lines
519 B
C#
using System;
|
|
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));
|
|
}
|
|
}
|
|
} |