mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
* [forage rule feature] add a rule to disabled using common_food_ids from the list in forage.cpp. currently set to enabled. * NPC database emotes now supports basic variables. More than one variable can be used at a time. * Format manifest * Formatting * Formatting * Formatting --------- Co-authored-by: Akkadius <akkadius1@gmail.com>
126 lines
2.1 KiB
C++
126 lines
2.1 KiB
C++
#include "../../client.h"
|
|
|
|
void FindEmote(Client *c, const Seperator *sep)
|
|
{
|
|
uint32 found_count = 0;
|
|
|
|
if (sep->IsNumber(2)) {
|
|
auto emote_id = Strings::ToUnsignedInt(sep->arg[2]);
|
|
|
|
for (auto& e : zone->npc_emote_list) {
|
|
if (emote_id == e->emoteid) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Emote {} | Event: {} ({}) Type: {} ({})",
|
|
e->emoteid,
|
|
EQ::constants::GetEmoteEventTypeName(e->event_),
|
|
e->event_,
|
|
EQ::constants::GetEmoteTypeName(e->type),
|
|
e->type
|
|
).c_str()
|
|
);
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Emote {} | Text: {}",
|
|
e->emoteid,
|
|
e->text
|
|
).c_str()
|
|
);
|
|
|
|
found_count++;
|
|
}
|
|
|
|
if (found_count == 50) {
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
if (found_count == 50) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"50 Emotes shown matching ID '{}', max reached.",
|
|
emote_id
|
|
).c_str()
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"{} Emote{} found matching ID '{}'.",
|
|
found_count,
|
|
found_count != 1 ? "s" : "",
|
|
emote_id
|
|
).c_str()
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
const std::string& search_criteria = sep->argplus[2];
|
|
|
|
for (auto& e : zone->npc_emote_list) {
|
|
|
|
const std::string& current_text = Strings::ToLower(e->text);
|
|
|
|
if (Strings::Contains(current_text, Strings::ToLower(search_criteria))) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Emote {} | Event: {} ({}) Type: {} ({})",
|
|
e->emoteid,
|
|
EQ::constants::GetEmoteEventTypeName(e->event_),
|
|
e->event_,
|
|
EQ::constants::GetEmoteTypeName(e->type),
|
|
e->type
|
|
).c_str()
|
|
);
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Emote {} | Text: {}",
|
|
e->emoteid,
|
|
e->text
|
|
).c_str()
|
|
);
|
|
|
|
found_count++;
|
|
}
|
|
|
|
if (found_count == 50) {
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
if (found_count == 50) {
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"50 Emotes shown matching '{}', max reached.",
|
|
search_criteria
|
|
).c_str()
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"{} Emote{} found matching '{}'.",
|
|
found_count,
|
|
found_count != 1 ? "s" : "",
|
|
search_criteria
|
|
).c_str()
|
|
);
|
|
}
|