Add Client::Tell_StringID for tell queue messages

This commit is contained in:
Michael Cook (mackal)
2014-09-19 18:16:52 -04:00
parent d26782b093
commit 8e43134bda
4 changed files with 16 additions and 0 deletions
+8
View File
@@ -3134,6 +3134,14 @@ void Client::FilteredMessage_StringID(Mob *sender, uint32 type, eqFilterType fil
safe_delete(outapp);
}
void Client::Tell_StringID(uint32 string_id, const char *who, const char *message)
{
char string_id_str[10];
snprintf(string_id_str, 10, "%d", string_id);
Message_StringID(MT_TellEcho, TELL_QUEUED_MESSAGE, who, string_id_str, message);
}
void Client::SetTint(int16 in_slot, uint32 color) {
Color_Struct new_color;
new_color.color = color;