public static bool Send(Objects.Client client, uint creatureId , string creatureName, Location location, string text)
        {
            UpdateCreatureTextPacket p = new UpdateCreatureTextPacket(client);

            p.CreatureId = creatureId;
            p.CreatureName = creatureName;
            p.Location = location;
            p.Text = text;

            return p.Send();
        }
示例#2
0
        public static bool Send(Objects.Client client, uint creatureId, string creatureName, Location location, string text)
        {
            UpdateCreatureTextPacket p = new UpdateCreatureTextPacket(client);

            p.CreatureId   = creatureId;
            p.CreatureName = creatureName;
            p.Location     = location;
            p.Text         = text;

            return(p.Send());
        }