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()); }
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(); }