mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
18 lines
No EOL
519 B
C#
18 lines
No EOL
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));
|
|
}
|
|
}
|
|
} |